Les tâches rake intégrées fonctionnent bien, mais ma nouvelle tâche personnalisée, dans Project/lib/tasks/payments.rb ne se charge pas :
namespace :payments do
desc "Tally payments at the end of the month"
task :compute => :environment do
BillingPeriod.compute_new_period
end
end
$ rake payments:compute
(in /Users/rob/Code/Apps/skyfarm)
rake aborted!
Don't know how to build task 'payments:compute'
Cela fonctionne bien si je charge le fichier application.rb :
require 'lib/tasks/payments.rb'
...mais ça casse d'autres choses :
$ rails s
./lib/tasks/payments.rb:1: undefined method `namespace' for main:Object (NoMethodError)