Class: Spree::Core::Environment

Inherits:
Object
  • Object
show all
Includes:
EnvironmentExtension
Defined in:
lib/spree/core/environment.rb,
lib/spree/core/environment/calculators.rb

Defined Under Namespace

Classes: Calculators

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from EnvironmentExtension

#add_class

Constructor Details

#initializeEnvironment

Returns a new instance of Environment.



11
12
13
14
15
# File 'lib/spree/core/environment.rb', line 11

def initialize
  @calculators = Calculators.new
  @preferences = Spree::AppConfiguration.new
  @promotions = Spree::Promo::Environment.new
end

Instance Attribute Details

#calculatorsObject

Returns the value of attribute calculators.



9
10
11
# File 'lib/spree/core/environment.rb', line 9

def calculators
  @calculators
end

#preferencesObject

Returns the value of attribute preferences.



9
10
11
# File 'lib/spree/core/environment.rb', line 9

def preferences
  @preferences
end

#promotionsObject

Returns the value of attribute promotions.



9
10
11
# File 'lib/spree/core/environment.rb', line 9

def promotions
  @promotions
end