Skip to content

Instantly share code, notes, and snippets.

@mjbellantoni
Created August 21, 2011 13:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save mjbellantoni/1160592 to your computer and use it in GitHub Desktop.
Save mjbellantoni/1160592 to your computer and use it in GitHub Desktop.
A Rake task for displaying asset paths
namespace :assets do
desc "Display asset path"
task :paths => :environment do
Rails.application.config.assets.paths.each do |path|
puts path
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment