Skip to content

Instantly share code, notes, and snippets.

@royratcliffe
Created September 7, 2011 09:26
Show Gist options
  • Save royratcliffe/1200147 to your computer and use it in GitHub Desktop.
Save royratcliffe/1200147 to your computer and use it in GitHub Desktop.
Rake task for listing asset paths
namespace :assets do
desc "Lists asset paths"
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