-
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathkarafka-testing.gemspec
More file actions
35 lines (29 loc) · 1.31 KB
/
karafka-testing.gemspec
File metadata and controls
35 lines (29 loc) · 1.31 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
# 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.add_dependency "karafka", ">= 2.5.0", "< 2.6.0"
spec.add_dependency "waterdrop", ">= 2.8.0"
spec.required_ruby_version = ">= 3.2.0"
spec.metadata = {
"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