-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathkarafka-testing.gemspec
41 lines (34 loc) · 1.58 KB
/
karafka-testing.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
# frozen_string_literal: true
lib = File.expand_path('lib', __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'karafka/testing/version'
Gem::Specification.new do |spec|
spec.name = 'karafka-testing'
spec.platform = Gem::Platform::RUBY
spec.version = Karafka::Testing::VERSION
spec.authors = ['Maciej Mensfeld']
spec.email = %w[contact@karafka.io]
spec.summary = 'Library which provides helpers for easier Karafka consumers tests'
spec.description = 'Library which provides helpers for easier Karafka consumers tests'
spec.homepage = 'https://karafka.io'
spec.license = 'MIT'
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.cert_chain = %w[certs/cert_chain.pem]
if $PROGRAM_NAME.end_with?('gem')
spec.signing_key = File.expand_path('~/.ssh/gem-private_key.pem')
end
spec.add_dependency 'karafka', '>= 2.4.0', '< 2.5.0'
spec.add_dependency 'waterdrop', '>= 2.7.0'
spec.required_ruby_version = '>= 3.1.0'
spec.metadata = {
'funding_uri' => 'https://karafka.io/#become-pro',
'homepage_uri' => 'https://karafka.io',
'changelog_uri' => 'https://karafka.io/docs/Changelog-Karafka-Testing',
'bug_tracker_uri' => 'https://github.com/karafka/karafka-testing/issues',
'source_code_uri' => 'https://github.com/karafka/karafka-testing',
'documentation_uri' => 'https://karafka.io/docs',
'rubygems_mfa_required' => 'true'
}
end