Module: ActiveSupport::Configurable::ClassMethods

Defined in:
lib/active_support/configurable.rb

Instance Method Summary collapse

Instance Method Details

#configObject



30
31
32
33
34
35
36
37
# File 'lib/active_support/configurable.rb', line 30

def config
  @_config ||= if respond_to?(:superclass) && superclass.respond_to?(:config)
    superclass.config.inheritable_copy
  else
    # create a new "anonymous" class that will host the compiled reader methods
    Class.new(Configuration).new
  end
end

#configure {|config| ... } ⇒ Object

Yields:



39
40
41
# File 'lib/active_support/configurable.rb', line 39

def configure
  yield config
end