0

Rails 4 アプリに spree と zurb の基盤を統合したところ、spree はビューに .html.erb ファイルを追加しなかったため、spree のデフォルト レイアウトをカスタマイズする方法がわかりません。

harriss-air:montrealfixed harrisrobin$ spree install --auto-accept
     gemfile  spree
     gemfile  spree_gateway
     gemfile  spree_auth_devise
         run  bundle install from "."
   identical  config/initializers/spree.rb
   identical  config/spree.yml
      remove  public/index.html
      append  public/robots.txt
       exist  app/assets/javascripts/store
       exist  app/assets/javascripts/admin
       exist  app/assets/stylesheets/store
       exist  app/assets/stylesheets/admin
       exist  app/assets/images/store
       exist  app/assets/images/admin
   identical  app/assets/javascripts/store/all.js
   identical  app/assets/stylesheets/store/all.css
   identical  app/assets/javascripts/admin/all.js
   identical  app/assets/stylesheets/admin/all.css
       exist  app/overrides
      append  db/seeds.rb
     copying  migrations
    creating  database
     running  migrations
     loading  seed data
     loading  sample data
      insert  config/routes.rb
**************************************************
We added the following line to your application's config/routes.rb file:

    mount Spree::Core::Engine, :at => '/'
**************************************************
Spree has been installed successfully. You're all ready to go!

インストールするとすべてがスムーズに進みます..しかし、アプリ>ビューファイルは同じままで、spreeフォルダーはありません。レイアウトで application.html.erb しか見えません。だから問題は..レール4でスプリーをカスタマイズするにはどうすればよいですか? より具体的には、zurb-foundation を使用して後者を行うにはどうすればよいですか。

4

2 に答える 2

1

Spree は、次の場所にある役立つカスタマイズ ガイドを提供しています。

http://guides.spreecommerce.com/developer/view.html

ビューはSpree gemからロードされています。bundle show spree_frontendファイルシステム上のファイルの場所を確認するために入力できます。ここに示すファイルのリストが表示されます (バージョンによって異なります)。

https://github.com/spree/spree/tree/v2.1.2/frontend

Spree に zurb-foundation を追加することは、侵襲的な変更になるでしょう。Spree のカスタマイズのコツをつかむために、最初にいくつかの小さな変更から始めたいと思うかもしれません。

于 2013-10-24T23:12:15.027 に答える