我在使用 bundler 和 rbenv 的项目时遇到问题:
我在我的项目根目录中并输入
bundle install
根据我的 Gemfile 安装所有捆绑包:
source 'http://rubygems.org'
gem 'rake', '~> 0.9.2'
gem 'nanoc', '~> 3.2.4'
gem 'sass', '~> 3.1.15'
gem 'coderay', '~> 1.0.5'
gem 'nokogiri', '~> 1.4.4'
gem 'yajl-ruby', '~> 0.8.2'
gem 'pygmentize', '~> 0.0.3'
gem 'coderay', '~> 1.0.5'
gem 'fssm', '~>0.2.9'
gem 'coderay_bash', '~>1.0.2'
gem 'kramdown', '~> 0.13.2'
gem 'htmlentities', '~> 4.3.1'
这也声称要安装 nokogiri。但每当我跑步
nanoc compile
我收到一条错误消息:
LoadError: cannot load such file -- nokogiri
Try installing the 'nokogiri' gem (`gem install nokogiri`) and then re-running the command.
我已经尝试卸载 gemgem uninstall nokogiri
并再次运行整个程序,但到目前为止没有任何效果。