-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathGemfile
48 lines (41 loc) · 1.21 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
47
48
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.7.5'
gem 'dotenv'
gem 'rails', '~> 7.0.1'
gem 'sprockets-rails'
gem 'gli', '~> 2.19.0'
gem 'pg', '~> 1.2'
gem 'bunny'
gem 'jwt', '~> 2.3.0'
gem 'jwt-multisig', '~> 1.0', '>= 1.0.4'
gem 'semver2', '~> 3.4'
gem 'bugsnag'
group :development, :test do
gem 'debug', platforms: %i[ mri mingw x64_mingw ]
gem 'factory_bot_rails'
gem 'rubocop'
gem 'rspec-rails'
gem 'pry-rails'
end
group :development do
gem 'spring'
gem 'foreman'
gem 'mailcatcher'
end
group :deploy do
gem 'capistrano-dotenv'
gem 'capistrano-dotenv-tasks'
gem 'capistrano', require: false
gem 'capistrano-rbenv', require: false
gem 'capistrano-rails', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-shell', require: false
gem 'capistrano-rails-console', require: false
gem 'capistrano-systemd-multiservice', github: 'brandymint/capistrano-systemd-multiservice', require: false
gem 'capistrano-tasks', github: 'brandymint/capistrano-tasks', require: false
gem 'capistrano-git-with-submodules'
gem 'bugsnag-capistrano', require: false
gem 'slackistrano', require: false
end
gem "sucker_punch", "~> 3.0"