This repository has been archived by the owner on May 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Gemfile
63 lines (54 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
# frozen_string_literal: true
ruby File.read(File.join(__dir__, '.ruby-version')).strip
# Pull gem index from rubygems
source 'https://rubygems.org'
# Pin the version of bundle we support
gem 'bundler', File.read(File.join(__dir__, '.bundler-version')).strip
# Dependencies for connectors
gem 'activesupport', '~>6.1.7.3'
gem 'mime-types', '= 3.1'
gem 'tzinfo-data'
gem 'tzinfo', '~> 2.0'
gem 'fugit', '~> 1.5.3'
gem 'remedy', '~> 0.3.0'
gem 'ecs-logging', '~> 1.0.0'
# Remove this section when gem 'config' is removed
gem 'dry-container', '= 0.9.0'
gem 'dry-core', '= 0.7.1'
gem 'dry-configurable', '= 0.13.0'
gem 'dry-initializer', '= 3.0.4'
gem 'dry-inflector', '= 0.2.1'
gem 'dry-schema', '= 1.8.0'
gem 'dry-validation', '= 1.7.0'
group :test do
gem 'rspec-collection_matchers', '~> 1.2.0'
gem 'rspec-core', '~> 3.10.1'
gem 'rspec_junit_formatter'
gem 'rubocop', '1.18.4'
gem 'rubocop-performance', '1.11.5'
gem 'rspec-mocks'
gem 'webmock'
gem 'rack', '>= 2.2.6.4'
gem 'rack-test'
gem 'ruby-debug-ide'
gem 'pry-remote'
gem 'pry-nav'
gem 'debase', '0.2.5.beta2'
gem 'timecop'
gem 'simplecov', require: false
gem 'simplecov-material'
end
# Dependencies for the HTTP service
gem 'config', '~> 4.0.0'
gem 'forwardable', '~> 1.3.2'
gem 'faraday', '~> 1.10.0'
gem 'faraday_middleware', '= 1.0.0'
gem 'httpclient', '~> 2.8.3'
gem 'attr_extras', '~> 6.2.5'
gem 'hashie', '~> 5.0.0'
gem 'concurrent-ruby', '~> 1.1.9'
gem 'elasticsearch', '~> 8.8.0'
# Dependencies for oauth
gem 'signet', '~> 0.16.0'
# Dependency for mongo connector
gem 'mongo', '~> 2.18'