We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Here's another handy snippet for clearing your Rails cache after deployments.
namespace :cache do task :clear => :environment do Rails.cache.clear end end task :after_deploy do each_heroku_app do |stage| stage.run 'rake', 'cache:clear' end end