Class: Imba::Rails::Engine
- Inherits:
-
Rails::Engine
- Object
- Rails::Engine
- Imba::Rails::Engine
- Defined in:
- lib/imba/rails.rb
Instance Method Summary collapse
Instance Method Details
#configure_assets(app) ⇒ Object
28 29 30 31 32 33 34 35 36 37 38 |
# File 'lib/imba/rails.rb', line 28 def configure_assets(app) if config.respond_to?(:assets) && config.assets.respond_to?(:configure) # Rails 4.x config.assets.configure do |env| yield env end else # Rails 3.2 yield app.assets end end |