-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
52 lines (47 loc) · 1.23 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
49
50
51
52
# frozen_string_literal: true
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
gem 'actionpack'
gem 'actionview'
gem 'activemodel'
gem 'activerecord'
gem 'activesupport'
gem 'bootsnap', require: false
gem 'ddtrace', require: 'ddtrace/auto_instrument'
gem 'dogstatsd-ruby'
gem 'flipper-active_record'
gem 'health-monitor-rails', '12.4.0'
gem 'honeybadger'
gem 'lograge'
gem 'logstash-event'
gem 'pg'
gem 'rack-cors'
gem 'rack-utf8_sanitizer'
gem 'railties', '~> 7.2'
gem 'rswag'
gem 'summon'
# Windows does not include zoneinfo files, so bundle the tzinfo-data gem
gem 'tzinfo-data', platforms: [:mingw, :mswin, :x64_mingw, :jruby]
gem 'whenever', require: false
group :development do
gem 'bcrypt_pbkdf'
gem 'capistrano', require: false
gem 'capistrano-bundler', require: false
gem 'capistrano-passenger', require: false
gem 'capistrano-rails', require: false
gem 'ed25519'
gem 'puma'
end
group :development, :test do
gem 'brakeman'
gem 'pry-byebug'
gem 'reek'
gem 'rspec_junit_formatter', require: false
gem 'rspec-rails'
gem 'rubocop-rails', require: false
gem 'rubocop-rspec', require: false
gem 'rubocop-rspec_rails', require: false
end
group :test do
gem 'webmock'
end