-
Notifications
You must be signed in to change notification settings - Fork 7
/
Gemfile
45 lines (36 loc) · 1001 Bytes
/
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
source 'https://rubygems.org'
ruby '2.6.8', engine: 'jruby', engine_version: '9.3.9.0'
gem 'rails', '~> 5.2.6'
gem 'tzinfo-data', platforms: [:jruby]
gem 'puma', '~> 6.3.1'
# Drivers
gem 'activerecord-jdbcpostgresql-adapter'
gem 'redis'
# Security
gem 'ruby-saml', '~> 1.17'
gem 'omniauth-saml', '~> 1.10' # TODO unlock this once https://sluzbyslovenskodigital.atlassian.net/browse/API-103 is resolved
gem 'jwt'
# Workers
gem 'clockwork'
gem 'delayed_job_active_record'
# Utilities
gem 'htmlentities'
gem 'jbuilder'
gem 'nokogiri'
gem 'rubyzip'
gem 'xmldsig'
gem 'i18n', '1.8.7' # TODO unlock this once https://github.com/jruby/jruby/issues/6547 and https://github.com/ruby-i18n/i18n/issues/555 are resolved
group :development, :test do
gem 'database_cleaner-active_record'
gem 'database_cleaner-redis'
gem 'dotenv-rails'
gem 'factory_bot_rails'
gem 'mock_redis'
gem 'pry-rails'
gem 'rspec-rails'
gem 'super_diff'
end
group :development do
gem 'annotate'
gem 'listen'
end