gitlabhq/lib/tasks/cache.rake

7 lines
121 B
Ruby
Raw Normal View History

2013-03-31 22:45:58 +02:00
namespace :cache do
desc "GITLAB | Clear redis cache"
task :clear => :environment do
Rails.cache.clear
end
end