-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathGemfile
More file actions
65 lines (52 loc) · 1.45 KB
/
Gemfile
File metadata and controls
65 lines (52 loc) · 1.45 KB
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
source 'https://rubygems.org'
git_source(:github) { |repo| "https://github.com/#{repo}.git" }
ruby '2.6.3'
gem 'rails', '~> 5.2.3'
gem 'umakadata', git: 'https://github.com/dbcls/umakadata_gem.git'
## middleware
gem 'foreman', '~> 0.85.0'
gem 'pg', '>= 0.18', '< 2.0'
gem 'puma', '~> 5.6'
# pin the rack version to 2.0.7 to avoid conflict with sidekiq
gem 'rack', '2.2.8.1'
gem 'redis', '~> 4.1', '>= 4.1.3'
gem 'redis-rails', '~> 5.0', '>= 5.0.2'
gem 'sendgrid-ruby', '~> 6.0'
gem 'sidekiq', '~> 6.5'
gem 'sidekiq-scheduler', '~> 3.0'
gem 'unicorn', '~> 5.5'
## html
gem 'slim-rails', '~> 3.2'
## js
gem 'js-routes', '~> 1.4', '>= 1.4.9'
gem 'uglifier', '>= 1.3.0'
gem 'webpacker', '~> 5.4', '>= 5.4.3'
## optimization
gem 'bootsnap', '>= 1.1.0', require: false
## utility
gem 'activeadmin', '~> 1.4'
gem 'active_admin_import', '~> 4.2'
gem 'devise', '~> 4.5'
gem 'dotenv-rails', '~> 2.7', '>= 2.7.5'
gem 'jbuilder', '~> 2.5'
gem 'net-http', '~> 0.4.1'
gem 'octokit', '~> 4.14'
gem 'omniauth-github', '~> 1.3'
gem 'recaptcha', '~> 5.0'
gem 'simple_form', '~> 5.0'
# asset
gem 'font-awesome-sass', '~> 6.1'
# console
gem 'pry-rails', '~> 0.3.9'
# analysis
gem 'google-analytics-rails', '~> 1.1', '>= 1.1.1'
group :development, :test do
gem 'byebug', platforms: [:mri, :mingw, :x64_mingw]
gem 'rspec-rails', '~> 3.8'
end
group :development do
gem 'listen', '>= 3.0.5', '< 3.2'
gem 'spring'
gem 'spring-watcher-listen', '~> 2.0.0'
gem 'web-console', '>= 3.3.0'
end