Sha256: 79293949424ec29d0cb6eabc18a2ac405534f5ccb7c10f48328bcb3b67c6e2f0
Contents?: true
Size: 445 Bytes
Versions: 8
Compression:
Stored size: 445 Bytes
Contents
require 'hat_trick/form_helper' module HatTrick class Engine < ::Rails::Engine # just defining this causes Rails to look for assets inside this gem initializer 'hat-trick.dsl' do ActiveSupport.on_load(:action_controller) do include HatTrick::DSL end end initializer 'hat-trick.form_helpers' do ActiveSupport.on_load(:action_view) do include HatTrick::FormHelper end end end end
Version data entries
8 entries across 8 versions & 1 rubygems