Sha256: 9c6decf0063bfc3f22fd6b8335bc090537b9fc31c866df5e654aed14b6108449
Contents?: true
Size: 556 Bytes
Versions: 12
Compression:
Stored size: 556 Bytes
Contents
module SmartTable class Engine < ::Rails::Engine # This makes models, controllers and routes defined on this gem to be all # scoped under SmartTable:: # Ref: http://edgeguides.rubyonrails.org/engines.html isolate_namespace SmartTable # This automatically includes smart_table methods on all controllers initializer 'smart_table.action_controller' do |app| ActiveSupport.on_load :action_controller do include SmartTable::SmartTableConcern helper SmartTable::SmartTableHelper end end end end
Version data entries
12 entries across 12 versions & 1 rubygems