spree_paypal_express/lib/spree_paypal_express/engine.rb

32 lines
789 B
Ruby
Raw Normal View History

2011-11-17 16:15:47 +00:00
module SpreePaypalExpress
class Engine < Rails::Engine
engine_name 'spree_paypal_express'
config.autoload_paths += %W(#{config.root}/lib)
# use rspec for tests
config.generators do |g|
g.test_framework :rspec
end
def self.activate
Dir.glob(File.join(File.dirname(__FILE__), "../app/**/*_decorator*.rb")) do |c|
Rails.env.production? ? require(c) : load(c)
end
end
2011-11-17 21:37:05 +00:00
config.after_initialize do |app|
2011-11-17 16:15:47 +00:00
app.config.spree.payment_methods += [
Spree::BillingIntegration::PaypalExpress,
Spree::BillingIntegration::PaypalExpressUk
]
end
2011-11-17 20:36:27 +00:00
ActiveSupport::Inflector.inflections do |inflect|
inflect.singular 'express', 'express'
end
2011-11-17 16:15:47 +00:00
config.to_prepare &method(:activate).to_proc
end
end