spree_paypal_express/lib/spree_paypal_express/engine.rb

39 lines
1.2 KiB
Ruby
Raw Normal View History

module Spree::PaypalExpress; end
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
initializer "spree.paypal_express.preferences", :before => :load_config_initializers do |app|
Spree::PaypalExpress::Config = Spree::PaypalExpressConfiguration.new
end
2011-11-17 16:15:47 +00:00
def self.activate
2012-01-17 17:40:46 +00:00
Dir.glob(File.join(File.dirname(__FILE__), "../../app/**/*_decorator*.rb")) do |c|
2011-11-17 16:15:47 +00:00
Rails.env.production? ? require(c) : load(c)
end
end
initializer "spree_paypal_express.register.payment_methods" 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 21:49:53 +00:00
# The install generator tries to do spree_paypal_express.classify => SpreePaypalExpres
# This fixes that 's' from getting chopped off
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