-
-
Notifications
You must be signed in to change notification settings - Fork 39
/
waterdrop.gemspec
43 lines (35 loc) · 1.54 KB
/
waterdrop.gemspec
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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'waterdrop/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[[email protected]]
spec.homepage = 'https://karafka.io'
spec.summary = 'Kafka messaging made easy!'
spec.description = spec.summary
spec.licenses = %w[LGPL-3.0-only Commercial]
spec.add_dependency 'karafka-core', '>= 2.4.3', '< 3.0.0'
spec.add_dependency 'karafka-rdkafka', '>= 0.17.5'
spec.add_dependency 'zeitwerk', '~> 2.3'
spec.required_ruby_version = '>= 3.1.0'
if $PROGRAM_NAME.end_with?('gem')
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
spec.cert_chain = %w[certs/cert.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]
spec.metadata = {
'funding_uri' => 'https://karafka.io/#become-pro',
'homepage_uri' => 'https://karafka.io',
'changelog_uri' => 'https://karafka.io/docs/Changelog-WaterDrop',
'bug_tracker_uri' => 'https://github.com/karafka/waterdrop/issues',
'source_code_uri' => 'https://github.com/karafka/waterdrop',
'documentation_uri' => 'https://karafka.io/docs/#waterdrop',
'rubygems_mfa_required' => 'true'
}
end