Created
October 6, 2017 23:12
-
-
Save srcrip/fe67664a9b433324fe0962e4c200aa2f to your computer and use it in GitHub Desktop.
Getting bcrypt gem working on Windows
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
> stop the rails server. | |
gem uninstall bcrypt | |
> select option 3. | |
gem uninstall bcrypt-ruby | |
> select option 3. | |
gem install bcrypt --platform=ruby | |
> in gemfile add: | |
gem 'bcrypt', platforms: :ruby | |
> then run: | |
bundle install | |
> and start the server again. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment