mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-17 00:07:24 +00:00
Remove everything related to splitters (including bringing environment.rb so we remove the splitters variable from it
15 lines
290 B
Ruby
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
|