diff options
author | HombreLaser <sebastian-440@live.com> | 2023-02-23 17:32:46 -0600 |
---|---|---|
committer | HombreLaser <sebastian-440@live.com> | 2023-02-23 17:32:46 -0600 |
commit | f7a0fb572e4518146ec9cb29669d12cd22b4dc11 (patch) | |
tree | 8c14c43fdb7f67d188a386643a3d766c42000c6d | |
parent | 42671b4b5f38064faba02c6e220c425f39afd87c (diff) |
Añade gemas para specs
-rw-r--r-- | .gitignore | 3 | ||||
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | Gemfile.lock | 6 |
3 files changed, 10 insertions, 1 deletions
@@ -33,4 +33,5 @@ /config/master.key # Ignore database configuration. -/config/database.yml
\ No newline at end of file +/config/database.yml +.env @@ -53,6 +53,8 @@ gem 'jwt' 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] + gem 'factory_bot' + gem 'faker' gem 'rspec-rails', '~> 6.0.0' gem 'shoulda-matchers', '~> 5.0' end diff --git a/Gemfile.lock b/Gemfile.lock index 41fcd61..cad9d54 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -80,6 +80,10 @@ GEM dotenv (= 2.8.1) railties (>= 3.2) erubi (1.12.0) + factory_bot (6.2.1) + activesupport (>= 5.0.0) + faker (3.1.1) + i18n (>= 1.8.11, < 2) globalid (1.1.0) activesupport (>= 5.0) i18n (1.12.0) @@ -184,6 +188,8 @@ DEPENDENCIES bootsnap debug dotenv-rails + factory_bot + faker jsonapi-serializer jwt mysql2 |