From 95e0a8c59f5e360876315a5559e556ce81b78683 Mon Sep 17 00:00:00 2001 From: HombreLaser Date: Tue, 21 Feb 2023 18:55:36 -0600 Subject: AƱade bcrypt MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Gemfile | 3 +++ Gemfile.lock | 2 ++ 2 files changed, 5 insertions(+) diff --git a/Gemfile b/Gemfile index 551fdc7..7aa7eb4 100644 --- a/Gemfile +++ b/Gemfile @@ -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 -- cgit v1.2.3