在 rails 应用程序中包含 Twitter bootstrap
include twitter bootstrap in a rails app
我想将 twitter-bootstrap
添加到我的 rails 应用程序中。
我在 Gemfile
中添加了 gem gem twitter-bootstrap-rails
。我做了捆绑安装。
但我没有在我的应用程序的资产下看到 bootstrap 的 css 和 js 文件。
我需要生成它们吗?
或者我应该直接下载最新的 bootstrap
zip 文件并将它们添加到我的应用程序中吗?
所以,我想知道在 rails 应用程序中包含 bootstrap 的最佳方式是什么。
查查bootstrap-sassgem,效率更高,更实用。您肯定想使用它。
安装 运行 捆绑包后,运行 bootstrap 生成器添加 Bootstrap 使用以下命令包含到您的资产中:
rails generate bootstrap:install less
您需要安装bootstrap-sassgem和sass-railsgem。之后将 application.css 文件重命名为 application.scss 并添加以下代码
// "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap-sprockets";
@import "bootstrap";
请查看bootstrapgemgithub页面
https://github.com/twbs/bootstrap-sass
我想将 twitter-bootstrap
添加到我的 rails 应用程序中。
我在 Gemfile
中添加了 gem gem twitter-bootstrap-rails
。我做了捆绑安装。
但我没有在我的应用程序的资产下看到 bootstrap 的 css 和 js 文件。
我需要生成它们吗?
或者我应该直接下载最新的 bootstrap
zip 文件并将它们添加到我的应用程序中吗?
所以,我想知道在 rails 应用程序中包含 bootstrap 的最佳方式是什么。
查查bootstrap-sassgem,效率更高,更实用。您肯定想使用它。
安装 运行 捆绑包后,运行 bootstrap 生成器添加 Bootstrap 使用以下命令包含到您的资产中:
rails generate bootstrap:install less
您需要安装bootstrap-sassgem和sass-railsgem。之后将 application.css 文件重命名为 application.scss 并添加以下代码
// "bootstrap-sprockets" must be imported before "bootstrap" and "bootstrap/variables"
@import "bootstrap-sprockets";
@import "bootstrap";
请查看bootstrapgemgithub页面 https://github.com/twbs/bootstrap-sass