On Tue, May 21, 2013 at 3:00 AM, ColoKoala wrote:
Hi,Ryan,
Following your description, I did
1. Update gemfile from *gem 'spree', '1.2.4*' to *gem 'spree', :git =>Hi,Ryan,
Following your description, I did
'git://github.com/spree/spree.git', :branch => '2-0-stable' *
2. Bundle update
3. rake railties:install:migrations
4. rake db:migrate
Then I got the error at homepage:
couldn't find file 'store/spree_core'
(in D:/DevRuby/MyStore/app/assets/stylesheets/store/all.css:7)
Extracted source (around line *#7*):
4: <meta content="width=device-width, initial-scale=1.0, maximum-scale=1" name="viewport">
5: <%== meta_data_tags %>
6: <%= favicon_link_tag image_path('favicon.ico') %>
7: <%= stylesheet_link_tag 'store/all', :media => 'screen' %>
8: <%= csrf_meta_tags %>
9: <%= javascript_include_tag 'store/all' %>
10: <!--[if lt IE 9]>
The content of D:/DevRuby/MyStore/app/assets/stylesheets/store/all.css is
/*
* This is a manifest file that'll automatically include all the
stylesheets available in this directory
* and any sub-directories. You're free to add application-wide styles to
this file and they'll appear at
* the top of the compiled file, but it's generally better to create a new
file per style scope.
*
*= require store/spree_core
*= require store/spree_promo
*= require_self
*= require_tree .
*= require store/spree_product_zoom
*/
When I run "git status", the only changes are Gemfile, Gemfile.lock,
db/schema.rb, and migrations.
Apparently there should be many changes in the spree application directory
structure and file contents from 1.2.4 to 2.0.0.
Before spree comes up with an ideal automated solution, what's the best way
to solve the problem now?
Create a new store, compare the change and modify directories/files one by
one?
Thanks.