aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/lib/sprockets/helpers.rb
diff options
context:
space:
mode:
authorJosé Valim <jose.valim@gmail.com>2011-10-05 09:35:27 +0200
committerJosé Valim <jose.valim@gmail.com>2011-10-05 09:37:58 +0200
commit4cea4ee6b54fee897b984a3c0288d12ce2d1efe1 (patch)
tree55823863c055ce4004c372347d6ec24ab91cce71 /actionpack/lib/sprockets/helpers.rb
parent87c57bb88f0eb1462ed31733ebcf3d9a535d8f16 (diff)
downloadrails-4cea4ee6b54fee897b984a3c0288d12ce2d1efe1.tar.gz
rails-4cea4ee6b54fee897b984a3c0288d12ce2d1efe1.tar.bz2
rails-4cea4ee6b54fee897b984a3c0288d12ce2d1efe1.zip
Fix regression when calling helpers inside sprockets.
Diffstat (limited to 'actionpack/lib/sprockets/helpers.rb')
-rw-r--r--actionpack/lib/sprockets/helpers.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/actionpack/lib/sprockets/helpers.rb b/actionpack/lib/sprockets/helpers.rb
index cd9c8f62e6..fee48386e0 100644
--- a/actionpack/lib/sprockets/helpers.rb
+++ b/actionpack/lib/sprockets/helpers.rb
@@ -1,6 +1,6 @@
module Sprockets
module Helpers
- autoload :RailsHelper, "sprockets/helpers/rails_helper"
- autoload :PrecompileHelper, "sprockets/helpers/precompile_helper"
+ autoload :RailsHelper, "sprockets/helpers/rails_helper"
+ autoload :IsolatedHelper, "sprockets/helpers/isolated_helper"
end
end