刚刚启动了一个新的狂欢应用程序,但找不到生成 theme_default 的方法
有人知道如何生成 default_theme 以便可以编辑吗?似乎所有核心文件都被隐藏且无法编辑。
我制作的最后一个工作狂欢应用程序从暴露在供应商/插件下的 theme_default 开始。
因为这个是在 Rails3 中的,所以我直接从官方的 Railsdog git 中拉取它,因此没有 theme_default,也没有 haml。
我可能错过了一些明显的东西。有什么想法吗?
Anyone know how to generate a default_theme so that it can be edited? It seems that all the core files are hidden and uneditable.
The last working spree app I made started with theme_default exposed under vendor/plugins.
Because this one is in Rails3, I pulled it right from the official railsdog git, thus no theme_default, and no haml.
I'm probably missing something obvious. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
基本上,要创建您自己的视图,起点是创建我们自己的扩展。您可以使用此处的命令来实现此目的:
http://spreecommerce.com/ Documentation/extensions.html#creatingan-extension
然后它就像任何 raRails 引擎一样,您可以创建您想要的视图,它们将覆盖 spree 的视图。
Basically, to create your own views, the starting point is to create our own extension. You can achieve this with the command you'll find here:
http://spreecommerce.com/documentation/extensions.html#creatingan-extension
Then it's like any raRails Engine, you can create the views you want, they'll override spree's.
rake sandbox
是您正在寻找的吗?请参阅构建沙盒应用程序Is
rake sandbox
what you are looking for? See Building a Sandbox Application您仅出于测试目的而进行
rake sandbox
,我找到了此链接更改
rails g spree:extension [ext_name]
的命令。You only do
rake sandbox
just for test purpose, I have found this linkChange the command for
rails g spree:extension [ext_name]
.