Files
redmine_rate/lib/tasks/cache.rake
2010-10-06 17:10:37 -07:00

9 lines
207 B
Ruby

namespace :rate_plugin do
namespace :cache do
desc "Update Time Entry cost caches"
task :update_cost_cache => :environment do
Rate.update_all_time_entires_with_missing_cost
end
end
end