0

评论和帖子中的解决方案:

操作系统:Ubuntu 12.0.4

问题:bcrypt-ruby,捆绑安装/更新

按照 Michael Hartl 的教程研究 RoR。通道。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. 
4

1 回答 1

0

尝试删除 Gemfile.lock 然后bundle install再次运行。

于 2013-12-30T21:50:45.447 回答