-
Notifications
You must be signed in to change notification settings - Fork 1
/
Gemfile
44 lines (38 loc) · 966 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
41
42
43
44
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.4'
gem 'aws-sdk-s3', require: false
gem 'bootsnap', '>= 1.4.8', require: false
gem 'bootstrap', '~> 4.5'
gem 'coffee-rails', '~> 5.0.0'
gem 'devise'
gem 'haml'
gem 'haml-rails'
gem 'jbuilder', '~> 2.10.1'
gem 'jquery-rails'
gem 'pg'
gem 'prawn'
gem 'puma', '~> 5.0.2'
gem 'rails', '~> 5.2.6'
gem 'recaptcha', require: 'recaptcha/rails'
gem 'sassc-rails', '~> 2.1.2'
gem 'turbolinks', '~> 5.2.1'
gem 'uglifier', '>= 4.2.0'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'dotenv-rails'
end
group :development do
gem 'web-console', '>= 3.7.0'
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.1'
gem 'guard'
gem 'guard-minitest'
end
group :test do
gem 'capybara', '>= 3.33.0'
gem 'selenium-webdriver'
gem 'webdrivers'
end
gem 'wdm', '>= 0.1.0' if Gem.win_platform?