Rails 3.1 +引导程序 2 +较少的

发布于 2025-01-01 00:01:24 字数 304 浏览 0 评论 0原文

为了将 Bootstrap 框架添加到 Rails 3.1 中的应用程序中,我使用 gem

gem 'less-rails-bootstrap', '~> 1.3.0'

并在 CSS 文件中导入 Bootstraps 的 CSS 数据

@import "twitter/bootstrap";

是否已经是新版本 Bootstrap 2 的更新?我想还是很快就会问,但因为我目前正在使用这个不错的 CSS 框架,所以我正在尝试更新到它的新版本......

For adding Bootstrap framework to my app in Rails 3.1 I use the gem

gem 'less-rails-bootstrap', '~> 1.3.0'

and in my CSS file I import Bootstraps`s CSS data

@import "twitter/bootstrap";

Is already an update for new version Bootstrap 2? I guess is still soon to ask, but because I currently play with this nice CSS framework, so I am trying to update to its new version...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

还给你自由 2025-01-08 00:01:24

来自 less-rails-bootstrap 文档:

“这个 gem 将直接跟踪 Twitter Bootstrap 项目的语义版本控制版本。我们的主要版本和次要版本将始终与他们的版本匹配。尽管我们可能有特定于此 gem 的小补丁级别版本。”

当前版本是 2.0.2。您正在使用悲观版本约束“~> 1.3.0”,您需要“~> 2.0”。

您不需要 @import 语句,因为这是由 gem 为您完成的。执行这两项操作就是您拥有相同生成的引导程序文件的两个副本的原因。

From the less-rails-bootstrap documentation:

"This gem will directly track the semantic versioning releases of the Twitter Bootstrap project. Our major and minor versions will always match to theirs. Tho we may have tiny patch level releases specific to this gem."

The current release is 2.0.2. You're using the pessimistic version constraint "~> 1.3.0", you want "~> 2.0".

You don't need the @import statement, since that is done for you by the gem. Doing both is why you have two copies of the same generated bootstrap files.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文