aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib
diff options
context:
space:
mode:
authorwycats <wycats@gmail.com>2011-05-25 11:35:18 -0700
committerwycats <wycats@gmail.com>2011-05-25 11:35:18 -0700
commite144b3e3cf9b4d3e4d4669fce5a13b8a19811bc8 (patch)
tree3df5b63af0f916371fd5485c38bcc3879b5ff8ec /railties/lib
parentee46bb73d44338b7dfb8976cc59d742b9394148a (diff)
downloadrails-e144b3e3cf9b4d3e4d4669fce5a13b8a19811bc8.tar.gz
rails-e144b3e3cf9b4d3e4d4669fce5a13b8a19811bc8.tar.bz2
rails-e144b3e3cf9b4d3e4d4669fce5a13b8a19811bc8.zip
Renaming helper in the Rake task, but why is this needed in the first place? (paging JP)
Diffstat (limited to 'railties/lib')
-rw-r--r--railties/lib/rails/tasks/assets.rake2
1 files changed, 1 insertions, 1 deletions
diff --git a/railties/lib/rails/tasks/assets.rake b/railties/lib/rails/tasks/assets.rake
index 158df31749..5d2f02af13 100644
--- a/railties/lib/rails/tasks/assets.rake
+++ b/railties/lib/rails/tasks/assets.rake
@@ -2,7 +2,7 @@ namespace :assets do
desc "Compile all the assets named in config.assets.precompile"
task :precompile => :environment do
# Give assets access to asset_path
- ActionView::Helpers::SprocketsHelper
+ Sprockets::Helpers::RailsHelper
assets = Rails.application.config.assets.precompile
Rails.application.assets.precompile(*assets)