ruby on rails 3.2 - RoR - Spree - Paypal Express Gem -


i attempting install paypal express checkout, added information in gemfile , ran bundle install ended here.

gem 'spree', '1.3.2' gem 'spree_gateway', :github => 'spree/spree_gateway', :branch => '1-3-stable' gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '1-3-stable' gem 'spree_static_content', :github => 'spree/spree_static_content', :branch => '1-3-stable' 

this error:

bundler not find compatible versions gem "spree_core": in gemfile:

spree_paypal_express (>= 0) ruby depends on spree_core (~> 2.0.0.beta) ruby spree_static_content (>= 0) ruby depends on spree_core (1.3.2) 

i new ruby/rails, believe should support v2 of spree_core, should support 1.3.2. not?

the gemfile asks 1.3.2, removing resolve issue?

what else information should provide more information?

if not bug, how possible fix this.

in time managed find answer self. issue see dependence of various versions of spree. meaning spree paypal express expecting spree 2.0 alpha while spree static content depend on spree 1.3.2

so solutions simple, add version targeting in gemfile.

here copy of part of gemfile think interest you.

  gem 'spree', '1.3.2'   gem 'spree_gateway', :github => 'spree/spree_gateway', :branch => '1-3-stable'   gem 'spree_auth_devise', :github => 'spree/spree_auth_devise', :branch => '1-3-stable'   gem 'spree_static_content', :github => 'spree/spree_static_content', :branch => '1-3-stable'    gem "cancan"   gem 'spree_paypal_express', github: 'spree/spree_paypal_express', branch: '1-3-stable' 

in above branch: '1-3-stable' key.

once in place, run bundle install , go.


Comments

Popular posts from this blog

Perl - how to grep a block of text from a file -

delphi - How to remove all the grips on a coolbar if I have several coolbands? -

javascript - Animating array of divs; only the final element is modified -