-
Notifications
You must be signed in to change notification settings - Fork 18
/
Gemfile
117 lines (105 loc) · 2.24 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
source 'https://rubygems.org'
gem 'rails', '~> 5.2.x'
gem 'pg', '= 0.21.0'
gem 'activerecord-nulldb-adapter'
gem 'nochmal', github: 'puzzle/nochmal'
gem 'acts_as_tree'
gem 'aws-sdk-s3', require: false
gem 'bleib'
gem 'bootsnap', '>= 1.4.6'
gem 'cancancan'
gem 'config', '>= 2.2.1'
gem 'country_select'
gem 'daemons'
gem 'dalli'
gem 'delayed_cron_job'
gem 'delayed_job_active_record'
gem 'devise'
gem 'email_address'
gem 'fast_jsonapi'
gem 'haml'
gem 'highrise'
gem 'image_processing'
gem 'jbuilder'
gem 'kaminari'
gem 'kaminari-bootstrap'
gem 'nested_form_fields'
gem 'net-ldap'
gem 'nokogiri'
gem 'omniauth'
gem 'omniauth-keycloak'
gem 'omniauth-rails_csrf_protection'
gem 'omniauth-saml'
gem 'prawn'
gem 'prometheus_exporter'
gem 'protective'
gem 'puma'
gem 'rails_autolink'
gem 'rails-i18n'
gem 'request_store'
gem 'rqrcode'
gem 'rswag-ui'
gem 'seed-fu'
gem 'swagger-blocks'
gem 'validates_by_schema'
gem 'validates_timeliness'
# Error reporting, they are required in their respective initializers
gem 'airbrake', require: false
gem 'sentry-raven', require: false
## assets
gem 'autoprefixer-rails'
gem 'bootstrap-sass'
gem 'chartjs-ror'
gem 'coffee-rails'
gem 'execjs'
gem 'jquery-rails'
gem 'jquery-ui-rails'
gem 'sass-rails'
gem 'selectize-rails'
gem 'turbolinks'
gem 'uglifier'
# must be at the end
gem 'paper_trail'
group :development, :test do
gem 'better_errors'
gem 'binding_of_caller'
gem 'codez-tarantula', require: 'tarantula-rails3'
gem 'faker'
gem 'pry-rails'
gem 'rb-readline'
gem 'request_profiler'
end
group :development do
gem 'bullet'
gem 'spring'
gem 'web-console'
end
group :test do
gem 'bundler-audit'
gem 'capybara'
gem 'database_cleaner'
gem 'fabrication'
gem 'headless'
gem 'mocha', require: false
gem 'rails-controller-testing'
gem 'selenium-webdriver'
gem 'webdrivers'
end
group :console do
gem 'pry-byebug', require: ENV['RM_INFO'].to_s.empty?
gem 'pry-doc'
end
group :metrics do
gem 'annotate'
gem 'brakeman'
gem 'haml-lint'
gem 'minitest-reporters'
gem 'rails-erd'
gem 'rubocop'
gem 'rubocop-checkstyle_formatter', require: false
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'sdoc'
gem 'simplecov-rcov', git: 'https://github.com/puzzle/simplecov-rcov'
end