Rails - 如何使用rails new 创建应用程序,指定用于测试的rspec 和用于当时视图的haml
Rails 3.1
我可以做: rails new myApp -d mysql
设置数据库即可。
是否可以同时设置rspec(或者是3.1中的默认值?)和haml。
我用谷歌搜索并查看指南,但不清楚。
我知道我可以添加 rspec 和 haml gems 并从那里开始,但我想知道在执行 rails new
时是否有选项可以设置它们
Rails 3.1
I can do:rails new myApp -d mysql
to set the database ok.
Is it possible to set rspec at the same time (or is it the default in 3.1?) and haml.
I googled and looked in the guides but it was not clear.
I know I can add rspec and haml gems and go from there but I was wondering if there are options to set those when doing rails new
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,我认为这是因为 Rails 依赖于 mysql 和其他数据库,而它不支持 rspec 或除 test/unit / minitest 之外的任何测试工具。
No. I think it's because Rails has dependencies on mysql and other databases, whereas it has no support for rspec or any testing tool other than test/unit / minitest.