-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathGemfile
67 lines (54 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.3.6'
gem 'rails', '7.2.2'
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.2.1'
gem 'octicons_helper'
gem "chartkick"
gem 'groupdate'
gem 'languages', github: 'andrew/languages'
gem 'pghero'
gem 'pg_query'
gem 'pg_search'
gem 'commonmarker', '0.23.10'
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 '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 'google-protobuf'
gem 'ostruct'
gem 'csv'
group :test do
gem 'shoulda'
end
group :development do
gem 'web-console'
gem 'listen'
gem 'dotenv-rails'
gem 'sql_queries_count'
end
group :production do
gem 'lograge'
gem 'puma_worker_killer'
end