-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGemfile
67 lines (54 loc) · 1.13 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.1.2'
gem 'rails', '6.1.5.1'
gem 'pg'
gem 'puma'
gem 'sassc-rails'
gem 'sprockets-rails'
gem 'turbolinks'
gem 'octokit'
gem 'bootsnap', require: false
gem 'pagy'
gem 'jquery-rails'
gem 'bootstrap', '4.6.0'
gem 'octicons_helper'
gem "chartkick"
gem 'groupdate'
gem 'languages', github: 'andrew/languages'
gem 'pghero'
gem 'pg_query'
gem 'pg_search'
gem 'commonmarker'
gem 'bibliothecary', git: "https://github.com/andrew/bibliothecary"
gem "license-compatibility"
gem "semantic", git: "https://github.com/librariesio/semantic"
gem "semantic_range", '2.3.1'
gem 'oj'
gem 'oj_mimic_json'
gem 'ox'
gem 'faraday'
gem "faraday_middleware"
gem "counter_culture"
gem "spdx", '2.0.10'
# gem 'bugsnag'
gem 'zlib'
gem 'omniauth-github'
gem 'simple_form'
gem 'rack-cors'
gem 'dalli'
gem 'sidekiq', '<7'
gem 'sidekiq-unique-jobs'
gem 'ipfs-http-client', github: 'andrew/ipfs-http-client'
gem "simple-rss"
gem "sanitize-url"
group :development do
gem 'web-console'
gem 'listen'
gem 'spring'
gem 'spring-watcher-listen'
gem 'dotenv-rails'
end
group :production do
gem 'lograge'
gem 'puma_worker_killer'
end