我刚刚在 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。所以问题是.. 我如何在 rails 4 上自定义 spree?更具体地说,我如何使用 zurb-foundation 来完成后者。