Skip to content

Commit

Permalink
Install gems for testing and password validaiton
Browse files Browse the repository at this point in the history
  • Loading branch information
btk5h committed Aug 26, 2020
1 parent 635e532 commit b9c6e91
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
7 changes: 6 additions & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,13 @@ gem 'puma', '~> 4.1'

gem 'grape'
gem 'grape_on_rails_routes'
gem 'grape-route-helpers'
gem 'grape-swagger'

# Use Redis adapter to run Action Cable in production
# gem 'redis', '~> 4.0'
# Use Active Model has_secure_password
# gem 'bcrypt', '~> 3.1.7'
gem 'bcrypt', '~> 3.1.7'

# Use Active Storage variant
# gem 'image_processing', '~> 1.2'
Expand All @@ -43,5 +44,9 @@ group :development do
gem 'spring-watcher-listen', '~> 2.0.0'
end

group :test do
gem 'factory_bot_rails'
end

# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]
13 changes: 13 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ GEM
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
ast (2.4.1)
bcrypt (3.1.15)
bootsnap (1.4.8)
msgpack (~> 1.0)
builder (3.2.4)
Expand Down Expand Up @@ -86,6 +87,11 @@ GEM
dry-inflector (~> 0.1, >= 0.1.2)
dry-logic (~> 1.0, >= 1.0.2)
erubi (1.9.0)
factory_bot (6.1.0)
activesupport (>= 5.0.0)
factory_bot_rails (6.1.0)
factory_bot (~> 6.1.0)
railties (>= 5.0.0)
ffi (1.13.1)
globalid (0.4.2)
activesupport (>= 4.2.0)
Expand All @@ -96,6 +102,10 @@ GEM
mustermann-grape (~> 1.0.0)
rack (>= 1.3.0)
rack-accept
grape-route-helpers (2.1.0)
activesupport
grape (>= 0.16.0)
rake
grape-swagger (1.2.1)
grape (~> 1.3)
grape_on_rails_routes (0.3.2)
Expand Down Expand Up @@ -213,9 +223,12 @@ PLATFORMS
ruby

DEPENDENCIES
bcrypt (~> 3.1.7)
bootsnap (>= 1.4.2)
byebug
factory_bot_rails
grape
grape-route-helpers
grape-swagger
grape_on_rails_routes
listen (~> 3.2)
Expand Down

0 comments on commit b9c6e91

Please sign in to comment.