Files
openfoodnetwork/lib/spree/core/environment.rb
Luis Ramos 1b28592f58 Now that the stock code is on out side we can clean up!
Remove everything related to splitters (including bringing environment.rb so we remove the splitters variable from it
2020-07-02 21:24:14 +01:00

15 lines
290 B
Ruby

module Spree
module Core
class Environment
include EnvironmentExtension
attr_accessor :calculators, :payment_methods, :preferences
def initialize
@calculators = Calculators.new
@preferences = Spree::AppConfiguration.new
end
end
end
end