-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGemfile
57 lines (43 loc) · 1.03 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
# frozen_string_literal: true
source 'https://rubygems.org'
gem 'bootsnap'
gem 'puma'
gem 'rails', '~> 6.1'
gem 'pg'
gem 'bootstrap-sass', '~> 3.3.6'
gem 'sassc-rails'
gem 'uglifier', '>= 1.3.0'
gem 'coffee-rails', '~> 5.0.0'
gem 'jquery-rails'
gem 'turbolinks', '~> 5.x'
gem 'jbuilder', '~> 2.0'
gem 'sprockets', '~> 4.0'
gem 'sprockets-rails', '~> 3.4'
group :development, :test do
gem 'byebug'
end
group :test do
gem 'minitest-reporters'
end
group :development do
# Access an IRB console on exception pages or by using <%= console %> in views
gem 'web-console'
gem 'listen', '~> 3.0.5'
# Spring speeds up development by keeping your application running in the background. Read more: https://github.com/rails/spring
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'awesome_print'
gem 'foreman'
gem 'letter_opener_web', '~> 2.0'
end
gem 'pundit'
gem 'devise'
gem 'kaminari'
gem 'sidekiq'
gem 'sidekiq-cron'
gem 'api-pagination'
gem 'oj'
gem 'pg_search'
gem "sentry-ruby"
gem "sentry-rails"
gem "sentry-sidekiq"