diff options
author | Matthew Lemon <y@yulqen.org> | 2023-12-20 17:34:26 +0000 |
---|---|---|
committer | Matthew Lemon <y@yulqen.org> | 2023-12-20 17:34:40 +0000 |
commit | 09064bb219279162ba3f84b6287247f9a654dc6c (patch) | |
tree | 1e314b83f5bf85e46a521cb4970b2d05c7bf5af2 /Gemfile | |
parent | d5f5c3d7f2d92c180c56053c994a148afd63118a (diff) |
Properly configures factory_bot and adds Faker
Diffstat (limited to '')
-rw-r--r-- | Gemfile | 1 | ||||
-rw-r--r-- | Gemfile.lock | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -52,6 +52,7 @@ group :development, :test do gem "debug", platforms: %i[ mri windows ] gem 'rspec-rails', '~> 6.1.0' gem 'factory_bot_rails' + gem 'faker' end group :development do diff --git a/Gemfile.lock b/Gemfile.lock index 626a9db..0e3e61a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -111,6 +111,8 @@ GEM factory_bot_rails (6.4.2) factory_bot (~> 6.4) railties (>= 5.0.0) + faker (3.2.2) + i18n (>= 1.8.11, < 2) globalid (1.2.1) activesupport (>= 6.1) i18n (1.14.1) @@ -271,6 +273,7 @@ DEPENDENCIES cssbundling-rails debug factory_bot_rails + faker jbuilder jsbundling-rails pry (~> 0.14.2) |