forked from karafka/waterdrop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwaterdrop.gemspec
More file actions
36 lines (29 loc) · 1.24 KB
/
waterdrop.gemspec
File metadata and controls
36 lines (29 loc) · 1.24 KB
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'water_drop/version'
Gem::Specification.new do |spec|
spec.name = 'waterdrop'
spec.version = ::WaterDrop::VERSION
spec.platform = Gem::Platform::RUBY
spec.authors = ['Maciej Mensfeld']
spec.email = %w[maciej@mensfeld.pl]
spec.homepage = 'https://github.com/karafka/waterdrop'
spec.summary = 'Kafka messaging made easy!'
spec.description = spec.summary
spec.license = 'LGPL-3.0'
spec.add_dependency 'concurrent-ruby', '>= 1.1'
spec.add_dependency 'dry-configurable', '~> 0.8'
spec.add_dependency 'dry-monitor', '~> 0.3'
spec.add_dependency 'dry-validation', '~> 1.3'
spec.add_dependency 'rdkafka', '>= 0.6.0'
spec.add_dependency 'zeitwerk', '~> 2.1'
spec.required_ruby_version = '>= 2.6.0'
if $PROGRAM_NAME.end_with?('gem')
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
spec.cert_chain = %w[certs/mensfeld.pem]
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(spec)/}) }
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
spec.require_paths = %w[lib]
end