评论和帖子中的以下解决方案:
操作系统:Ubuntu 12.0.4
问题:bcrypt-ruby,bundle install / update
按照Michael Hartl的教程学习RoR。 CH。 6.3.1,加密密码
我已将此行包含在我的gem文件中:
gem 'bcrypt-ruby', '~>3.1.2'
我可以从控制台安装bcrypt。我的系统列出如下:
myapp1$ gem list bcrypt-ruby
*** LOCAL GEMS ***
bcrypt-ruby (3.1.2)
但是在运行bundle install时,无法找到bcrypt。
myapp1$ bundle install
Fetching gem metadata from https://rubygems.org/.........
Fetching gem metadata from https://rubygems.org/..
Resolving dependencies...
Could not find gem 'bcrpyt-ruby (~> 3.1.2) ruby' in the gems available on this machine.
我已经在bcrypt和bundle-install上看到了之前的问题,并尝试了他们的解决方案,但没有用。
有人能指出我的方向或提供解决方案吗?
非常感谢!
此案例中的解决方案
Removed Gemfile.lock, then comment out/delete the bcrypt-ruby line from Gemfile.
Then, run [bundle install] to regenerate the Gemlock file,
reinsert the bcrypt-ruby line in the Gemfile, and run [bundle install] again.
In this case, bcrypt is successfully added.
答案 0 :(得分:0)
尝试删除Gemfile.lock,然后再次运行bundle install
。