-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
40 lines (34 loc) · 945 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '3.0.2'
# Only include the pieces of Rails that we're using
# -- Begin rails
# gem 'rails', '~> 6.1.3', '>= 6.1.3.2'
gem 'actionpack', '~> 6.1.3', '>= 6.1.4.6'
gem 'activemodel', '~> 6.1.3', '>= 6.1.4.6'
gem 'activerecord', '~> 6.1.3', '>= 6.1.4.6'
gem 'activesupport', '~> 6.1.3', '>= 6.1.4.6'
gem 'bundler', '>= 1.15.0'
gem 'railties', '~> 6.1.3', '>= 6.1.4.6'
# -- End rails
gem 'annotate', require: false
gem 'bootsnap', '>= 1.4.4', require: false
gem 'jbuilder', '~> 2.7'
gem 'jwt'
gem 'pg', '~> 1.1'
gem 'puma', '~> 5.0', '>= 5.6.2'
group :development, :test do
gem 'pry'
gem 'rspec'
gem 'rspec-rails'
gem 'rubocop'
gem 'rubocop-rails'
gem 'rubocop-rspec'
gem 'simplecov'
gem 'timecop'
end
group :development do
gem 'listen', '~> 3.3'
gem 'spring'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]