-
Notifications
You must be signed in to change notification settings - Fork 111
/
Gemfile
83 lines (66 loc) · 1.56 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
# frozen_string_literal: true
source 'https://rubygems.org'
# as framework
gem 'rails', '~> 7.0'
# as asset pipeline
gem 'sprockets-rails'
# as application server
gem 'puma'
# as templating engine
gem 'haml-rails', '~> 2.0'
# for appdata redirections (https -> http)
gem 'open_uri_redirections'
# for stylesheets
gem 'sassc-rails'
# as javascript asset compressor
gem 'terser'
# for translations
gem 'fast_gettext', '>= 2.2.0'
gem 'gettext_i18n_rails', '>= 1.8.1'
gem 'rails-i18n'
# for markdown in views
gem 'redcarpet', '~> 3.5.1'
# for logging
gem 'lograge'
# as error catcher
gem 'sentry-rails'
gem 'sentry-ruby'
gem 'dalli'
gem 'hashie'
gem 'mini_magick'
gem 'minitest'
gem 'nokogiri'
gem 'xmlhash', '>= 1.2.2'
gem 'matrix'
gem 'puma_worker_killer'
# FIXME: for selenium-webdriver, rexml isn't in the default set of Ruby 3.1 anymore
# see https://github.com/SeleniumHQ/selenium/commit/526fd9d0de60a53746ffa982feab985fed09a278
gem 'rexml'
# HTTP client library for OBS Client
gem 'faraday'
gem 'faraday_middleware'
gem 'multi_xml'
# needed to collect translatable strings
# not needed at production
group :development do
# no need to load the gem via require
# we only need the rake tasks
gem 'gettext', '>= 3.4.2', require: false
gem 'ruby_parser', require: false
end
group :test do
gem 'capybara'
gem 'faker'
gem 'haml_lint', require: false
gem 'rubocop'
gem 'rubocop-minitest'
gem 'rubocop-performance'
gem 'rubocop-rails'
gem 'rubocop-capybara'
gem 'selenium-webdriver'
gem 'vcr'
gem 'webmock'
end
group :development, :test do
gem 'byebug'
end