Skip to content

Commit

Permalink
Move dependencies to gemspec file
Browse files Browse the repository at this point in the history
  • Loading branch information
madebydna committed Nov 29, 2024
1 parent 4ce442a commit 8c7ac80
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,4 @@ source 'https://rubygems.org'
# Specify your gem's dependencies in fluent-plugin-kafka.gemspec
gemspec

gem "json", "2.7.3" # locked to 2.7.3 for compatibility with AWS SDK code
gem "aws-msk-iam-sasl-signer"
gem 'rdkafka'
gem 'rdkafka', ENV['RDKAFKA_VERSION_MIN_RANGE'], ENV['RDKAFKA_VERSION_MAX_RANGE'] if ENV['USE_RDKAFKA']
3 changes: 3 additions & 0 deletions fluent-plugin-kafka.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ Gem::Specification.new do |gem|
gem.add_dependency "fluentd", [">= 0.10.58", "< 2"]
gem.add_dependency 'ltsv'
gem.add_dependency 'ruby-kafka', '>= 1.5.0', '< 2'
gem.add_dependency 'rdkafka'
gem.add_dependency 'aws-msk-iam-sasl-signer'
gem.add_dependency 'json', '2.7.3'
gem.add_development_dependency "rake", ">= 0.9.2"
gem.add_development_dependency "test-unit", ">= 3.0.8"
gem.add_development_dependency "test-unit-rr", "~> 1.0"
Expand Down

0 comments on commit 8c7ac80

Please sign in to comment.