-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
52 lines (46 loc) · 1.09 KB
/
Gemfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.2'
gem 'rails', '~> 6.0.3', '>= 6.0.3.4'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 4.1'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'rack-cors'
gem 'dotenv-rails', '~> 2.7.5'
gem 'devise'
gem 'devise-jwt'
gem 'foreman'
gem 'faker'
gem 'will_paginate', '~> 3.1.0'
gem "pundit"
gem "rolify"
gem 'factory_bot_rails'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rubocop'
gem 'rubocop-rails'
gem 'pry'
gem 'better_errors'
gem 'bullet'
gem 'rswag'
gem 'vcr'
gem 'rspec'
gem 'webmock'
gem 'rspec-rails'
gem 'rspec-json_expectations'
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'webdrivers', '~> 4.0'
gem 'shoulda-matchers'
gem 'database_cleaner'
gem 'simplecov'
gem 'rubocop-rspec', require: false
gem 'rails-controller-testing'
gem 'coveralls_reborn', '~> 0.18.0', require: false
end
group :development do
gem 'rails-erd'
gem 'listen', '~> 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end