Class: DebugMethods::Configuration

Inherits:
Object
  • Object
show all
Defined in:
lib/debug_methods/configuration.rb

Constant Summary collapse

DEFAULT_ENVIRONMENTS =
[:development]

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeConfiguration

Returns a new instance of Configuration.



7
8
9
# File 'lib/debug_methods/configuration.rb', line 7

def initialize
  @environments = DEFAULT_ENVIRONMENTS
end

Instance Attribute Details

#environmentsObject

Returns the value of attribute environments.



3
4
5
# File 'lib/debug_methods/configuration.rb', line 3

def environments
  @environments
end