Skip to content

Instantly share code, notes, and snippets.

@robertsosinski
Created April 19, 2009 03:38
Show Gist options
  • Save robertsosinski/97904 to your computer and use it in GitHub Desktop.
Save robertsosinski/97904 to your computer and use it in GitHub Desktop.
Deletes js and css cache files: Taken from maintainable software
namespace :tmp do
namespace :assets do
desc "Clears javascripts/cache and stylesheets/cache"
task :clear => :environment do
FileUtils.rm(Dir['public/javascripts/cache/[^.]*'])
FileUtils.rm(Dir['public/stylesheets/cache/[^.]*'])
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment