7

我必须从中进行选择,bootstrap-sass并且twitter-bootstrap-rails根据网络上的建议,我选择了第一个。

但是,我看到twitter-bootstrap-railsgem 有一些用于应用程序布局的生成器。像,

rails g bootstrap:layout application fixed
rails g bootstrap:themed Posts

我发现这对于启动一个项目非常有用。但我没有在bootstrap-sassgem 中找到类似的生成器。运行命令:

rails generate 

没有像以前的那样显示任何生成器。

有没有办法让这些布局使用bootstrap-sass而不是使用twitter-bootstrap-rails

提前致谢。

4

3 回答 3

7

在那里你可以找到一种为 bootstrap-sass 生成主题的好方法:

https://github.com/doabit/bootstrap-sass-extras

基本上你只是:

 rails g scaffold Post title:string description:text
 rake db:migrate
 rails g bootstrap:themed Posts
于 2014-03-04T12:37:47.027 回答
4

我正在使用这个 gem,虽然我不知道它的生成器。

我在 GitHub 上找到了一个 gem,您可能会觉得它很有用:

https://github.com/decioferreira/bootstrap-generators

或者,您可以简单地定义一个新的 custom.css.scss 文件并开始使用整个应用程序的 css。并且不要忘记将引导导入添加到您的文件中!

于 2013-08-05T17:09:33.557 回答
0

还有这些(鲜为人知但可能值得一试)宝石:

https://github.com/thrivesmart/bootscaf

https://github.com/leandroo/flexi_generators

于 2016-08-26T20:52:11.637 回答