Class: Deface::Environment

Inherits:
Object
  • Object
show all
Defined in:
lib/deface/environment.rb

Defined Under Namespace

Classes: Overrides

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeEnvironment

Returns a new instance of Environment.



5
6
7
8
# File 'lib/deface/environment.rb', line 5

def initialize
  @overrides = Overrides.new
  @enabled   = true
end

Instance Attribute Details

#enabledObject

Returns the value of attribute enabled.



4
5
6
# File 'lib/deface/environment.rb', line 4

def enabled
  @enabled
end

#overridesObject

Returns the value of attribute overrides.



4
5
6
# File 'lib/deface/environment.rb', line 4

def overrides
  @overrides
end