Sha256: 0c7e4e7d44b3e4866922e72311e6f1da996332ce000751052397368553733781
Contents?: true
Size: 1.72 KB
Versions: 5
Compression:
Stored size: 1.72 KB
Contents
require 'rails/engine' require 'responders' require 'inherited_resources/blank_slate' require 'inherited_resources/responder' module InheritedResources ACTIONS = [ :index, :show, :new, :edit, :create, :update, :destroy ] unless self.const_defined?(:ACTIONS) autoload :Actions, 'inherited_resources/actions' autoload :BaseHelpers, 'inherited_resources/base_helpers' autoload :ShallowHelpers, 'inherited_resources/shallow_helpers' autoload :BelongsToHelpers, 'inherited_resources/belongs_to_helpers' autoload :ClassMethods, 'inherited_resources/class_methods' autoload :DSL, 'inherited_resources/dsl' autoload :PolymorphicHelpers, 'inherited_resources/polymorphic_helpers' autoload :SingletonHelpers, 'inherited_resources/singleton_helpers' autoload :UrlHelpers, 'inherited_resources/url_helpers' autoload :VERSION, 'inherited_resources/version' # Change the flash keys used by FlashResponder. def self.flash_keys=(array) Responders::FlashResponder.flash_keys = array end class Railtie < ::Rails::Engine config.inherited_resources = InheritedResources if config.respond_to?(:app_generators) config.app_generators.scaffold_controller = :inherited_resources_controller else config.generators.scaffold_controller = :inherited_resources_controller end end end class ActionController::Base # If you cannot inherit from InheritedResources::Base you can call # inherit_resources in your controller to have all the required modules and # funcionality included. def self.inherit_resources InheritedResources::Base.inherit_resources(self) initialize_resources_class_accessors! create_resources_url_helpers! end end
Version data entries
5 entries across 5 versions & 1 rubygems