-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
40 lines (35 loc) · 938 Bytes
/
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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.0'
gem 'active_model_serializers', '~> 0.10.10'
gem 'bcrypt', '~> 3.1'
gem 'bootsnap', '~> 1.4', require: false
gem 'dotenv-rails', '~> 2.7'
gem 'kaminari', '~> 1.2'
gem 'pg', '~> 1.2'
gem 'puma', '~> 4.3'
gem 'rack-cors', '~> 1.1'
gem 'rails', '~> 6.0'
group :development, :test do
gem 'codecov', require: false
gem 'database_cleaner', '~> 1.8'
gem 'factory_bot_rails', '~> 5.1'
gem 'faker', '~> 2.10'
gem 'pry-byebug', '~> 3.8'
gem 'rspec-rails', '~> 4.0.0'
gem 'rubocop'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'rubycritic'
gem 'shoulda-matchers', '~> 4.3'
gem 'simplecov'
end
group :development do
gem 'brakeman'
gem 'listen', '~> 3.2'
gem 'spring', '~> 2.1'
gem 'spring-watcher-listen', '~> 2.0'
gem 'web-console', '~> 4.0'
end