Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 20 additions & 19 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,25 @@ PATH
elasticsearch (~> 7.4)
elasticsearch-persistence (~> 7.0.0, >= 7.0.0)
jwt (~> 2.2.2)
rack (~> 2.0)
rack (>= 2, < 4)
sidekiq (>= 5.1.3, <= 6.1.2)

GEM
remote: https://rubygems.org/
specs:
activemodel (6.0.3.4)
activesupport (= 6.0.3.4)
activesupport (6.0.3.4)
activemodel (5.2.8.1)
activesupport (= 5.2.8.1)
activesupport (5.2.8.1)
concurrent-ruby (~> 1.0, >= 1.0.2)
i18n (>= 0.7, < 2)
minitest (~> 5.1)
tzinfo (~> 1.1)
zeitwerk (~> 2.2, >= 2.2.2)
ansi (1.5.0)
ast (2.4.0)
coderay (1.1.2)
coderay (1.1.3)
concurrent-ruby (1.1.7)
connection_pool (2.2.3)
diff-lcs (1.3)
diff-lcs (1.5.0)
docile (1.3.2)
elasticsearch (7.5.0)
elasticsearch-api (= 7.5.0)
Expand Down Expand Up @@ -54,20 +53,22 @@ GEM
i18n (1.8.5)
concurrent-ruby (~> 1.0)
jaro_winkler (1.5.4)
json (2.3.0)
jwt (2.2.2)
json (2.6.3)
jwt (2.2.3)
method_source (0.9.2)
minitest (5.14.2)
minitest (5.15.0)
multi_json (1.14.1)
multipart-post (2.1.1)
parallel (1.19.1)
parser (2.7.1.0)
parallel (1.20.1)
parser (2.7.1.3)
ast (~> 2.4.0)
pry (0.12.2)
coderay (~> 1.1.0)
method_source (~> 0.9.0)
rack (2.2.3)
rainbow (3.0.0)
rack (2.2.6.4)
rack-protection (2.2.4)
rack
rainbow (3.1.1)
rake (12.3.3)
redis (4.2.5)
rspec (3.8.0)
Expand All @@ -91,10 +92,11 @@ GEM
ruby-progressbar (~> 1.7)
unicode-display_width (>= 1.4.0, < 1.7)
ruby-progressbar (1.10.1)
sidekiq (6.1.2)
connection_pool (>= 2.2.2)
rack (~> 2.0)
redis (>= 4.2.0)
sidekiq (5.2.7)
connection_pool (~> 2.2, >= 2.2.2)
rack (>= 1.5.0)
rack-protection (>= 1.5.0)
redis (>= 3.3.5, < 5)
simplecov (0.17.1)
docile (~> 1.1)
json (>= 1.8, < 3)
Expand All @@ -104,7 +106,6 @@ GEM
tzinfo (1.2.8)
thread_safe (~> 0.1)
unicode-display_width (1.6.1)
zeitwerk (2.4.2)

PLATFORMS
ruby
Expand Down
2 changes: 1 addition & 1 deletion es_logger.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency 'elasticsearch', '~> 7.4'
spec.add_runtime_dependency 'elasticsearch-persistence', '~> 7.0.0', '>= 7.0.0'
spec.add_runtime_dependency 'jwt', '~>2.2.2'
spec.add_runtime_dependency 'rack', '~> 2.0'
spec.add_runtime_dependency 'rack', '>= 2', '< 4'
spec.add_runtime_dependency 'sidekiq', '>= 5.1.3', '<= 6.1.2'
spec.add_development_dependency 'elasticsearch-extensions', '~> 0.0.31'
spec.add_development_dependency 'pry', '~> 0.12.2'
Expand Down