我想向 ActiveMerchant gem 添加一些功能以测试 PayPal Express 网关,为此尝试了一个拉取请求,但在 Github 上被拒绝了。
我想向 ActiveMerchant Billing 模块添加一个类:
module ActiveMerchant #:nodoc:
module Billing #:nodoc:
class PaypalBogusGateway < BogusGateway
# some codes here
end
end
end
我通过在本地下载 gem 并将其拉入我的项目并将我的新文件放在那里成功地做到了这一点:
#Gemfile
gem 'activemerchant', '1.34.1', path: "vendor/gems/activemerchant-1.34.1", require: 'active_merchant'
但是,当然,这不是最好的主意,因为如果需要,我必须手动提取任何更新。
有什么方法可以使用从 RubyGems 源中提取的 gem 将类添加到他们的模块中?
谢谢
编辑
将它放在 lib 文件夹中应该可以工作,但我的代码需要 gem 中的一些类来继承,例如:
require File.dirname(__FILE__) + '/paypal/paypal_common_api'
require File.dirname(__FILE__) + '/paypal/paypal_express_response'
require File.dirname(__FILE__) + '/paypal_express_common'
将 File.dirname( FILE ) 替换为 gem 的安装位置...这在服务器环境中会有所不同,对吧?