diff options
author | HombreLaser <sebastian-440@live.com> | 2023-02-23 17:14:40 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-02-23 17:14:40 -0600 |
commit | 89fa02058db1b533f5713ec75550ba140f2317d6 (patch) | |
tree | 043af4af5a247a206a0eb8dac2d28dc6b135fb59 | |
parent | 8d64b077fbbd5f291f09788d64c5ad97f07173de (diff) |
Añade dotenv-rails
-rw-r--r-- | Gemfile | 3 | ||||
-rw-r--r-- | Gemfile.lock | 5 |
2 files changed, 8 insertions, 0 deletions
@@ -8,6 +8,9 @@ ruby '3.2.1' # Bundle edge Rails instead: gem "rails", github: "rails/rails", branch: "main" gem 'rails', '~> 7.0.4', '>= 7.0.4.2' +# To load environment variables. +gem 'dotenv-rails' + # Use MariaDB gem 'mysql2' diff --git a/Gemfile.lock b/Gemfile.lock index d74595c..41fcd61 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -75,6 +75,10 @@ GEM date (3.3.3) debug (1.7.1) diff-lcs (1.5.0) + dotenv (2.8.1) + dotenv-rails (2.8.1) + dotenv (= 2.8.1) + railties (>= 3.2) erubi (1.12.0) globalid (1.1.0) activesupport (>= 5.0) @@ -179,6 +183,7 @@ DEPENDENCIES bcrypt (~> 3.1.7) bootsnap debug + dotenv-rails jsonapi-serializer jwt mysql2 |