snyk-bot 2020-05-20 07:09:47 +02:00 committed by Malaber
parent b53ffd40af
commit a82302e68d
1 changed files with 8 additions and 8 deletions

16
Gemfile
View File

@ -6,7 +6,7 @@ git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.2' ruby '2.6.2'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails' # Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'rails', '~> 5.2.1' gem 'rails', '~> 5.2.4', '>= 5.2.4.3'
# Use sqlite3 as the database for Active Record # Use sqlite3 as the database for Active Record
gem 'sqlite3' gem 'sqlite3'
# Use Puma as the app server # Use Puma as the app server
@ -29,16 +29,16 @@ gem 'bootsnap', '>= 1.1.0', require: false
# gem 'rack-cors' # gem 'rack-cors'
# Authentication # Authentication
gem 'devise' gem 'devise', '>= 4.7.1'
gem 'devise_token_auth' gem 'devise_token_auth', '>= 1.1.3'
gem 'rack-cors' gem 'rack-cors'
# Interactors # Interactors
gem 'interactor' gem 'interactor'
gem 'interactor-rails' gem 'interactor-rails', '>= 2.2.1'
gem 'active_model_serializers' gem 'active_model_serializers', '>= 0.10.10'
gem 'mailgun-ruby' gem 'mailgun-ruby'
@ -46,10 +46,10 @@ group :development, :test do
# Call 'byebug' anywhere in the code to stop execution and get a debugger console # Call 'byebug' anywhere in the code to stop execution and get a debugger console
gem 'byebug', platforms: %i[mri mingw x64_mingw] gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'coveralls', require: false gem 'coveralls', require: false
gem 'factory_bot_rails' gem 'factory_bot_rails', '>= 5.1.1'
gem 'faker' gem 'faker'
gem 'rspec-rails' gem 'rspec-rails', '>= 3.9.0'
gem 'shoulda-matchers' gem 'shoulda-matchers', '>= 4.1.2'
end end
group :development do group :development do