是否有人面临此问题:
LoadError (cannot load such file -- bcrypt)
在Rails 5应用程序中?
我的模特就是这样:
class User < ApplicationRecord
validates :name, presence: true, uniqueness: true
has_secure_password
end
我已经安装了bcrypt(在我的Gemfile中)。我能够在irb中使用它,但是我的rails应用程序出现了这个错误。
我正在使用Mac OS X Sierra和Ruby 2.3.1。
答案 0 :(得分:0)
我遇到了同样的错误并重新启动了服务器,让它像Black Enigma说的那样工作。即,在终端中运行bundle install
后,退出您正在运行的服务器,然后再次运行rails server
。
现在工作正常。