mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-24 20:36:49 +00:00
13 lines
222 B
Ruby
13 lines
222 B
Ruby
# frozen_string_literal: true
|
|
|
|
module Spree
|
|
module Core
|
|
class Engine < ::Rails::Engine
|
|
isolate_namespace Spree
|
|
engine_name 'spree'
|
|
|
|
config.autoload_paths += %W(#{config.root}/lib)
|
|
end
|
|
end
|
|
end
|