-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
33 lines (27 loc) · 874 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
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.5'
# Bundle edge Rails instead: gem 'rails', github: 'rails/rails'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'jbuilder', '~> 2.7'
gem 'puma', '~> 4.1'
gem 'rack-cors'
gem 'rails', '~> 6.0.3', '>= 6.0.3.3'
gem 'sqlite3', '~> 1.4'
gem 'rdoc'
group :development, :test do
gem 'byebug', platforms: %i[mri mingw x64_mingw]
gem 'pry-rails'
gem 'rspec-rails', '~> 5.0.0'
end
group :development do
gem 'listen', '~> 3.2'
gem 'rubocop', '~> 1.19', require: false
gem 'rubocop-performance', '~> 1.11', require: false
gem 'rubocop-rails', '~> 2.11', require: false
gem 'rubocop-rspec', require: false
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
end
gem 'tzinfo-data', platforms: %i[mingw mswin x64_mingw jruby]