-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathGemfile
30 lines (23 loc) · 763 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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.2'
gem 'rails', '~> 6.0', '>= 6.0.2.1'
gem 'pg', '~> 1.2', '>= 1.2.2'
gem 'puma', '~> 4.3', '>= 4.3.1'
gem 'bootsnap', '~> 1.4', '>= 1.4.5'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
end
group :development do
gem 'web-console', '~> 4.0', '>= 4.0.1'
gem 'listen', '~> 3.2', '>= 3.2.1'
gem 'spring', '~> 2.1'
gem 'spring-watcher-listen', '~> 2.0', '>= 2.0.1'
end
group :test do
gem 'capybara', '~> 3.31'
gem 'selenium-webdriver'
gem 'chromedriver-helper'
end
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]