diff options
-rw-r--r-- | Gemfile | 3 | ||||
-rw-r--r-- | Gemfile.lock | 2 |
2 files changed, 5 insertions, 0 deletions
@@ -41,6 +41,9 @@ gem 'rack-cors' # JSON serializer. gem 'jsonapi-serializer' +# Secure password requirement. +gem 'bcrypt', '~> 3.1.7' + group :development, :test do # See https://guides.rubyonrails.org/debugging_rails_applications.html#debugging-with-the-debug-gem gem 'debug', platforms: %i[mri mingw x64_mingw] diff --git a/Gemfile.lock b/Gemfile.lock index a623c5a..416110b 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -66,6 +66,7 @@ GEM i18n (>= 1.6, < 2) minitest (>= 5.1) tzinfo (~> 2.0) + bcrypt (3.1.18) bootsnap (1.16.0) msgpack (~> 1.2) builder (3.2.4) @@ -172,6 +173,7 @@ PLATFORMS x86_64-linux DEPENDENCIES + bcrypt (~> 3.1.7) bootsnap debug jsonapi-serializer |