Sha256: 6296efeca5edfef53a02db3bd35839baa5b29fae92ae769aed7cb8afeff70c06
Contents?: true
Size: 697 Bytes
Versions: 1
Compression:
Stored size: 697 Bytes
Contents
module Html5 module Rails class Engine < ::Rails::Engine # initializer "html5_rails_engine.helper" do |app| # ActiveSupport.on_load(:action_controller) do # include Html5::Rails::BoilerplateHelpers # end # end initializer 'html5_rails_engine.helper' do |app| #ActionView::Base.send :include, Html5::Rails::BoilerplateHelpers ActionController::Base.helper(Html5::Rails::BoilerplateHelpers) end # initializer 'html5_rails_engine.controller' do |app| # ActiveSupport.on_load(:action_controller) do # include Html5RailsEngineActionControllerExtension # end # end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
html5-rails-0.0.1 | lib/html5/rails/engine.rb |