-
-
Notifications
You must be signed in to change notification settings - Fork 532
Expand file tree
/
Copy pathGemfile
More file actions
69 lines (61 loc) · 1.38 KB
/
Gemfile
File metadata and controls
69 lines (61 loc) · 1.38 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
66
67
68
69
source 'https://rubygems.org'
ruby '4.0.1'
gem 'rails', '8.1.3'
gem 'jquery-rails'
gem 'pg', '~> 1.6.1'
gem 'omniauth', '~> 2.1'
gem 'omniauth-github'
gem 'omniauth-rails_csrf_protection'
gem 'octokit'
gem 'rabl'
gem 'kaminari', github: 'keithyoder/kaminari', branch: 'deprecator-notify'
gem 'bootstrap-sass'
gem 'jquery-datetimepicker-rails'
gem 'simple_form'
gem 'coffee-rails'
gem 'uglifier'
gem 'octicons_helper', '~> 19.24'
gem 'rack-canonical-host'
gem 'draper'
gem 'responders'
gem 'typhoeus'
gem 'sassc-rails'
gem 'puma'
gem 'rack-attack'
gem 'bootsnap', require: false
gem 'sprockets', '< 5.0.0'
gem 'faraday', '2.14.2'
gem "commonmarker", "~> 2.8"
gem 'faraday-retry'
gem 'observer'
gem 'ostruct'
group :development do
gem 'spring'
gem 'spring-commands-rspec'
gem 'web-console'
end
group :development, :test, :cucumber do
gem 'minitest', '< 7'
gem 'i18n-tasks'
gem 'rspec-rails'
gem 'rails-controller-testing'
gem 'rspec-its', require: false
gem 'rspec-collection_matchers', require: false
gem 'rspec-activemodel-mocks', require: false
gem 'factory_bot_rails', '6.5.1'
gem 'faker'
gem 'brakeman'
gem 'cuprite'
gem 'database_cleaner'
gem 'shoulda-matchers'
gem 'webmock', require: false
gem 'timecop'
gem 'christmas_tree_formatter'
gem 'benchmark'
end
group :production do
gem 'foreman'
gem 'dalli'
gem 'bugsnag'
gem 'rack-google-analytics'
end