Spree installation error: Could not find gem 'spree_skrill (> = 0) ruby'

I am new to ROR. Now I install Spree , next step

gem install rails -v 3.1.4
rails new mystore
cd mystore
spree install

      

After that this error is shown here

gemfile  spree
     gemfile  spree_usa_epay
     gemfile  spree_skrill
         run  bundle install from "."
Could not find gem 'spree_skrill (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.
precompiling  assets
Could not find gem 'spree_skrill (>= 0) ruby' in the gems available on this machine.
Run `bundle install` to install missing gems.

      

+3


source to share


1 answer


gem install spree_skrill

      

And if after that you get "Can't find gem" spree_usa_epay (> = 0) ruby ​​'in gems available on this machine.



gem install spree_usa_epay

      

after that i tried running -> spree install again and it worked

+1


source







All Articles