未初始化的常量 ActiveMerchant::Billing::CreditCard::Validateable (NameError) - 在 Spree 商店

uninitialized constant ActiveMerchant::Billing::CreditCard::Validateable (NameError) - in Spree shop

我是 rails 的新人。今天我尝试将我的商店 (SpreeShop) 部署到新的生产服务器,但有些地方出了问题。我有一些愚蠢的问题 gem: activemerchant (1.34.1).

下面是我的堆栈跟踪。

uninitialized constant ActiveMerchant::Billing::CreditCard::Validateable (NameError)
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/activemerchant-1.34.1/lib/active_merchant/billing/credit_card.rb:51:in `<class:CreditCard>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/activemerchant-1.34.1/lib/active_merchant/billing/credit_card.rb:49:in `<module:Billing>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/activemerchant-1.34.1/lib/active_merchant/billing/credit_card.rb:6:in `<module:ActiveMerchant>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/activemerchant-1.34.1/lib/active_merchant/billing/credit_card.rb:5:in `<top (required)>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/activemerchant-1.34.1/lib/active_merchant/billing.rb:5:in `<top (required)>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/activemerchant-1.34.1/lib/active_merchant.rb:56:in `<top (required)>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/bundler/gems/spree-3a3652adb1e8/core/lib/spree/core.rb:8:in `<top (required)>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/bundler/gems/spree-3a3652adb1e8/core/lib/spree_core.rb:1:in `require'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/bundler/gems/spree-3a3652adb1e8/core/lib/spree_core.rb:1:in `<top (required)>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/bundler/gems/spree-3a3652adb1e8/lib/spree.rb:1:in `require'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/bundler/gems/spree-3a3652adb1e8/lib/spree.rb:1:in `<top (required)>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:72:in `require'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:72:in `block (2 levels) in require'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:70:in `each'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:70:in `block in require'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:59:in `each'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@global/gems/bundler-1.3.5/lib/bundler/runtime.rb:59:in `require'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@global/gems/bundler-1.3.5/lib/bundler.rb:132:in `require'
  /home/dp/dp/releases/20150607162220/config/application.rb:7:in `<top (required)>'
  /home/dp/dp/releases/20150607162220/config/environment.rb:2:in `require'
  /home/dp/dp/releases/20150607162220/config/environment.rb:2:in `<top (required)>'
  config.ru:3:in `require'
  config.ru:3:in `block in <main>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/rack-1.4.5/lib/rack/builder.rb:51:in `instance_eval'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/rack-1.4.5/lib/rack/builder.rb:51:in `initialize'
  config.ru:1:in `new'
  config.ru:1:in `<main>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@quiselle/gems/passenger-4.0.26/helper-scripts/rack-preloader.rb:105:in `eval'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/passenger-4.0.26/helper-scripts/rack-preloader.rb:105:in `preload_app'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/passenger-4.0.26/helper-scripts/rack-preloader.rb:150:in `<module:App>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/passenger-4.0.26/helper-scripts/rack-preloader.rb:29:in `<module:PhusionPassenger>'
  /home/dp/.rvm/gems/ruby-1.9.3-p429@dp/gems/passenger-4.0.26/helper-scripts/rack-preloader.rb:28:in `<main>'

你知道如何解决这个问题吗???我读了另一个 post 有类似问题但没有任何帮助....

这与 https://github.com/Shopify/active_utils/issues/57 中详述的问题相同。

此问题的修复已包含在 active_merchant gem on Jan 15th, 2015 中,并且在 activemerchant 版本 1.47.0 或更高版本中可用。

因此,要解决 rails 应用中的问题,请更新 activemerchant gem 版本。步骤如下:

  1. 修改Gemfile并设置active_merchantgem版本为gem 'activemerchant', '1.50.0'
  2. 运行 bundle install

可以使用高于 1.47.0 的任何版本的 activemerchant gem。

更新

active_merchant-payu gem 不依赖于 activemerchant 的任何特定版本。 运行 bundle update 强制使用最新版本 activemerchant gem.

未初始化常量 ActiveMerchant::Billing::CreditCard::Validateable 问题与 active_utils gem 的版本有关。版本 3 抛出错误;版本 2 没有。您需要在 Gemfile 中设置 gem 版本。

# Gemfile
gem 'active_utils',  '2.0.2'
gem 'activemerchant', '~> 1.32.1', require: 'active_merchant'