go minimal
go minimal

Reputation: 1703

Active Merchant Rails 3.1.3 Error

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)

Upvotes: 0

Views: 513

Answers (1)

Nouman Khalid
Nouman Khalid

Reputation: 46

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

Upvotes: 3

Related Questions