I'm starting with ruby on rails I'm using the gem devise when I want to enter an email with a password I get this error
What is the reason?
Uninstall bcrypt
gem uninstall bcrypt-ruby gem uninstall bcrypt gem install bcrypt --platform=ruby
Then add in your Gemfile :
gem 'bcrypt', '~> 3.1.11'
And, finally, execute the following command:
bundle install