-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
46 lines (39 loc) · 1.01 KB
/
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
45
46
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
gem 'rails', '~> 6.0.0'
gem 'puma', '~> 3.11'
gem 'sass-rails', '~> 5'
gem 'webpacker', '~> 4.0'
gem 'jbuilder', '~> 2.7'
gem 'bootsnap', '>= 1.4.2', require: false
gem 'devise'
gem 'webpush'
gem 'serviceworker-rails'
gem 'dotenv-rails'
gem "haml-rails"
gem 'pg'
group :development, :test do
gem 'sqlite3', '~> 1.4'
gem 'factory_bot_rails'
gem 'byebug'
end
group :development do
gem 'web-console', '>= 3.3.0'
gem "capistrano"
# gem "rvm-capistrano"
gem 'rvm1-capistrano3', require: false
gem "capistrano-passenger"
gem "capistrano-yarn"
gem "capistrano-rails"
end
group :test do
gem 'capybara', '>= 2.15'
gem 'selenium-webdriver'
gem 'webdrivers'
# there is a rails 6 request spec bug in the rspec-rails 3.9 release, for now use the 4.0 preview
gem 'rspec-rails', git: 'https://github.com/rspec/rspec-rails', branch: '4-0-maintenance'
end
group :production do
gem 'exception_notification'
end