Hi,
I am currently trying to set up Spree Paypal Express. It does not seem to work at this stage. Whenever I try to checkout with Spree Paypal Express, it gives me this error:
undefined method `shipping_method' for #Spree::Order:0x714ac50
This is my gemfile:
source 'https://rubygems.org'
gem 'rails', '3.2.13'
gem 'mysql'
group :assets do
gem 'sass-rails', '> 3.2.3'
gem 'coffee-rails', '> 3.2.1'
gem 'uglifier', '>= 1.0.3'
end
gem 'jquery-rails'
gem 'spree', '~> 2.0.3'
gem 'spree_gateway', :github => 'spree/spree_gateway', :branch => '2-0-stable'
gem 'spree_auth_devise', :github => 'spree/spree_auth_devise' , branch: '2-0-stable'
gem 'spree_static_content', :github => 'spree/spree_static_content', branch: '2-0-stable'
gem 'spree_editor', :github => 'spree/spree_editor'
gem 'spree_contact_us', :github => 'rterbush/spree_contact_us', branch: '2-0-stable'
gem 'spree_newsletter_subscribers', :github => 'Michael1969/Spree-Newsletter-Subscribers', branch: 'master'
gem 'datashift'
gem 'datashift_spree'
gem 'spree_paypal_express', :git => 'git://github.com/spree/spree_paypal_express.git', :branch => '2-0-stable'
gem 'therubyracer', :platforms => :ruby
group :development do
gem 'quiet_assets'
end
What would be the best way to resolve this issue? Thanks.
Thanks,
K