lib/symphonia.rb in symphonia-3.0.3 vs lib/symphonia.rb in symphonia-3.1.0

- old
+ new

@@ -1,16 +1,17 @@ # Dir[File.dirname(__FILE__) + '/symphonia/*.rb'].each {|file| require file } module Symphonia include ::ActiveSupport::Configurable + autoload :Attachable, 'symphonia/attachable' autoload :BaseController, 'symphonia/base_controller' + autoload :BootstrapLinkRender, 'symphonia/bootstrap_link_render' autoload :ControllerExtensions, 'symphonia/controller_extensions' + autoload :EntityDecorator, 'symphonia/entity_decorator' autoload :FormBuilder, 'symphonia/form_builder' - autoload :BootstrapLinkRender, 'symphonia/bootstrap_link_render' - autoload :Query, 'symphonia/query' autoload :ModelAttributes, 'symphonia/model_attributes' autoload :ModelFilters, 'symphonia/model_filters' - autoload :Attachable, 'symphonia/attachable' + autoload :Query, 'symphonia/query' autoload :QueryColumns, 'symphonia/query_columns' module ActionCable autoload :Connection, 'symphonia/action_cable/connection' end