7

我正在尝试在我的第一个 Rails 项目中使用 twitter-bootstrap-rails gem,在 Windows 7 机器上运行

ruby 1.9.3p125 (2012-02-16) [i386-mingw32]
Rails 3.2.1
twitter-bootstrap-rails 2.1.1

当我运行时,rails g bootstrap:install我得到以下信息:

[WARNING] Please install gem 'therubyracer' to use Less.
    C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/bundler-1.1.5/lib/bundler/runtime.rb:74:in `require': cannot load such file -- twitter/bootstrap/rails (LoadError)
        from C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/bundler-.1.5/lib/bundler/runtime.rb:74:in 'rescue in block in require'
        from C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/bundler-.1.5/lib/bundler/runtime.rb:62:in 'block in require'
        from C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/bundler-.1.5/lib/bundler/runtime.rb:55:in 'each'
        from C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/bundler-.1.5/lib/bundler/runtime.rb:55:in 'require'
        from C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/bundler-.1.5/lib/bundler.rb:119:in `require'
        from H:/Dev/sugarcane/config/application.rb:7:in `<top (required)>'
        from C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/railties-3.2.1/lib/rails/commands.rb:24:in `require'
        from C:/RailsInstaller/Ruby1.9.3/lib/ruby/gems/1.9.1/gems/railties-3.2.1/lib/rails/commands.rb:24:in `<top (required)>'
        from script/rails:6:in `require'
        from script/rails:6:in `<main>'

这是我的 Gemfile:

source 'https://rubygems.org'
gem 'rails', '3.2.1'
gem 'pg'

group :assets do
  gem 'sass-rails',   '~> 3.2.3'
  gem 'coffee-rails', '~> 3.2.1'
  gem 'twitter-bootstrap-rails', :git => 'git://github.com/seyhunak/twitter-bootstrap-rails.git'
  gem 'uglifier', '>= 1.0.3'
end

gem 'jquery-rails'

我尝试将其包含gem therubyracer在我的 Gemfile 中,但我收到有关 libv8 gem 的编译错误,这在 Windows 上不可用。我也尝试过gem therubyracer, :platform => :ruby,但 Bundler 仍然尝试在bundle install. 我也尝试安装 node.js 和 include gem execjs,但无济于事。

我遇到的每个解决方案似乎都没有帮助。我想在这个项目上使用 LESS 而不是静态 CSS,所以一个允许我在 Windows 机器上使用 LESS 和 Rails 的解决方案将是最有帮助的。

4

3 回答 3

7

我已经改用bootstrap-sass gem。

因此,我可以使用 SASS 作为 CSS 预处理器,而不是使用 LESS。缺点是它似乎没有任何代码生成器。

于 2012-07-29T11:56:40.087 回答
1

根据gem 到 static 的这个更改分支:

gem 'twitter-bootstrap-rails', :git => "git://github.com/seyhunak/twitter-bootstrap-rails.git", :branch => "static"

它为我解决了问题。

于 2012-07-28T19:03:27.357 回答
0

还请查看您的应用程序 Gemfile。

确保其中包含“therubyracer”宝石。

所以如果你找到线:

# gem 'therubyracer', 平台: :ruby

像这样删除哈希:

gem 'therubyracer', 平台: :ruby

于 2015-09-12T19:34:22.287 回答