活跃商家 Rails 3.1.3 错误
我尝试将 Active Merchant 与新的 Rails 3.1.3 应用程序一起使用,但收到以下错误:
rails plugin install git://github.com/Shopify/active_merchant.git
rails server
=> Booting WEBrick
=> Rails 3.1.3 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
Exiting
/.rvm/gems/[email protected]/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:240:in `require': no such file to load -- active_utils (LoadError)
I'm trying to use Active Merchant with a new Rails 3.1.3 app and I'm getting the following error:
rails plugin install git://github.com/Shopify/active_merchant.git
rails server
=> Booting WEBrick
=> Rails 3.1.3 application starting in development on http://0.0.0.0:3000
=> Call with -d to detach
=> Ctrl-C to shutdown server
Exiting
/.rvm/gems/[email protected]/gems/activesupport-3.1.3/lib/active_support/dependencies.rb:240:in `require': no such file to load -- active_utils (LoadError)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
遇到了同样的问题,结果是在您的 gem 文件中添加 gem 'active_utils' 。
希望这能解决您的问题。
谢谢
Got the same issue and it turn out to be adding gem 'active_utils' in your gem file.
Hope so this will solve your problem.
Thanks