-
Notifications
You must be signed in to change notification settings - Fork 27
/
Gemfile
67 lines (45 loc) · 1.06 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
59
60
61
62
63
64
65
66
67
source 'https://rubygems.org'
ruby '3.2.1'
gem 'rails', '7.1.3.4'
gem 'pg'
gem 'bootsnap', require: false
gem 'redis'
gem 'delayed_job_active_record'
gem 'airbrake'
# https://devcenter.heroku.com/articles/language-runtime-metrics-ruby
gem 'barnes'
# Use SCSS for stylesheets
gem 'sass-rails'
gem 'bootstrap-sass', '~> 3.4.1'
gem 'font-awesome-sass'
gem 'sprockets-rails'
gem 'sprockets'
gem 'mail'
gem 'terser'
gem 'oauth2'
gem 'cancancan'
gem 'redcarpet'
# Build JSON APIs with ease. Read more: https://github.com/rails/jbuilder
gem 'jbuilder', '~> 2.0'
gem 'oj'
# bundle exec rake doc:rails generates the API under doc/api.
# gem 'sdoc', '~> 0.4.0', group: :doc
gem 'pry-rails'
group :development do
gem 'pry-remote'
gem 'pry-doc'
gem 'web-console'
gem 'listen'
end
group :development, :test do
gem 'dotenv-rails'
gem 'minitest-ci', git: 'https://github.com/circleci/minitest-ci.git'
end
# Use puma as the app server
gem 'puma'
gem 'faye-websocket'
gem 'rack-timeout'
gem 'bulk_insert'
gem 'concurrent-ruby'
gem 'pg_search'
gem 'kaminari'