Skip to content

Commit

Permalink
Register extension on Sprockets.
Browse files Browse the repository at this point in the history
The `app.assets` instance is `nil` in Rails 4.1.
  • Loading branch information
dgraham committed Oct 18, 2014
1 parent 70e3bac commit b09f1e3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlebars_assets/engine.rb
Expand Up @@ -2,7 +2,7 @@ module HandlebarsAssets
# NOTE: must be an engine because we are including assets in the gem
class Engine < ::Rails::Engine
initializer "handlebars_assets.assets.register", :group => :all do |app|
::HandlebarsAssets::register_extensions(app.assets)
::HandlebarsAssets::register_extensions(Sprockets)
end
end
end

0 comments on commit b09f1e3

Please sign in to comment.