public
Description: FiveRuns TuneUp Panel
Homepage: http://fiveruns.org
Clone URL: git://github.com/fiveruns/fiveruns_tuneup.git
fiveruns_tuneup / uninstall.rb
100644 6 lines (6 sloc) 0.261 kb
1
2
3
4
5
6
# Remove Assets
Dir[File.join(RAILS_ROOT, 'public', '*', 'tuneup')].each do |asset_dir|
  show_name = asset_dir.split(File::SEPARATOR)[-3, 3].join(File::SEPARATOR)
  FileUtils.rm_rf(asset_dir) rescue nil
  STDERR.puts "FiveRuns TuneUp: Removed #{show_name}"
end