-
Notifications
You must be signed in to change notification settings - Fork 0
/
Gemfile
48 lines (37 loc) · 872 Bytes
/
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'
gem 'rails', '~> 6.0'
# Database
gem 'pg'
gem 'redis'
# Required to use Action Cable. Action Cable does not work with WEBrick,
# because WEBrick does not support the Rack socket hijacking API.
gem 'puma'
# Search
gem 'pg_search'
# CSS / Assets / JS
gem 'coffee-rails'
gem 'font_awesome5_rails'
gem 'jquery-rails'
gem 'sassc-rails'
gem 'turbolinks'
gem 'uglifier'
gem 'webpacker'
# Pagination
gem 'pagy'
# Background Jobs
gem 'sinatra', require: false
# Sidekiq is version locked because the production server has an ancient version
# of Redis.
gem 'sidekiq', '< 6'
# Perf Check
gem 'perf_check', github: 'rubytune/perf_check'
# GitHub APIs
gem 'octokit'
group :test do
# Disallow all HTTP requests from the test suite by default.
gem 'webmock'
end
group :development do
# Used to generate random seed data.
gem 'faker'
end