-
Notifications
You must be signed in to change notification settings - Fork 5
/
Gemfile
58 lines (52 loc) · 1.5 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
53
54
55
56
57
58
# frozen_string_literal: true
source "https://rubygems.org"
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby "3.3.5"
gem "rails", "~> 7.2.2.1"
gem "active_flag"
gem "blazer"
gem "bootsnap", require: false # Reduces boot times through caching; required in config/boot.rb
gem "commonmarker", "< 1"
gem "devise"
gem "good_job", "~> 3.99.x"
gem "humanize"
gem "importmap-rails"
gem "inline_svg"
gem "jbuilder"
gem "omniauth-kitt"
gem "omniauth-rails_csrf_protection"
gem "omniauth-slack-openid"
gem "pg"
gem "puma"
gem "rouge"
gem "sentry-rails"
gem "sentry-ruby"
gem "slack-ruby-client"
gem "sprockets-rails"
gem "stimulus-rails"
gem "strong_migrations"
gem "tailwindcss-rails"
gem "turbo-rails"
gem "view_component"
group :development, :test do
gem "brakeman"
gem "bundler-audit"
gem "byebug", platforms: %i[mri mingw x64_mingw]
gem "dotenv"
gem "erb_lint", require: false
gem "factory_bot_rails"
gem "rspec-rails", "~> 6.x"
gem "rubocop", require: false
gem "rubocop-performance", require: false
gem "rubocop-rails", require: false
gem "simplecov"
gem "webmock"
end
group :development do
gem "listen"
# Display performance information such as SQL time and flame graphs for each request in your browser.
# Can be configured to work on production as well see: https://github.com/MiniProfiler/rack-mini-profiler/blob/master/README.md
gem "rack-mini-profiler"
# Access an interactive console on exception pages or by calling "console" anywhere in the code.
gem "web-console"
end