1
0
Fork 0

Use Faker

This commit is contained in:
Alex Kotov 2018-11-23 01:24:13 +05:00
parent 369d6db0a7
commit b9e825f9e2
No known key found for this signature in database
GPG Key ID: 4E831250F47DE154
2 changed files with 7 additions and 0 deletions

View File

@ -36,6 +36,10 @@ gem 'bootsnap', '>= 1.1.0', require: false
gem 'pry-rails', '~> 0.3'
group :development, :test do
# Faker is used to easily generate fake data:
# names, addresses, phone numbers, etc.
gem 'faker', '~> 1.8'
# Automatic Ruby code style checking tool.
# Aims to enforce the community-driven Ruby Style Guide.
gem 'rubocop', '~> 0.60.0'

View File

@ -56,6 +56,8 @@ GEM
docile (1.3.1)
erubi (1.7.1)
execjs (2.7.0)
faker (1.9.1)
i18n (>= 0.7)
ffi (1.9.25)
globalid (0.4.1)
activesupport (>= 4.2.0)
@ -207,6 +209,7 @@ PLATFORMS
DEPENDENCIES
bootsnap (>= 1.1.0)
byebug
faker (~> 1.8)
listen (>= 3.0.5, < 3.2)
pg (>= 0.18, < 2.0)
pry-rails (~> 0.3)