Sha256: 30058dba9524109570f4de5431548430de56f0add9dd64c58139cab6a9157010
Contents?: true
Size: 610 Bytes
Versions: 1
Compression:
Stored size: 610 Bytes
Contents
module EffectiveDeveloper class Engine < ::Rails::Engine engine_name 'effective_developer' # Set up our default configuration options. initializer 'effective_developer.defaults', before: :load_config_initializers do |app| # Set up our defaults, as per our initializer template eval File.read("#{config.root}/config/effective_developer.rb") end # Include acts_as_addressable concern and allow any ActiveRecord object to call it initializer 'effective_developer.effective_resources' do |app| ActiveSupport.on_load :effective_resource do end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
effective_developer-0.4.0 | lib/effective_developer/engine.rb |