-
Notifications
You must be signed in to change notification settings - Fork 26
/
manageiq-messaging.gemspec
38 lines (33 loc) · 1.64 KB
/
manageiq-messaging.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
# coding: utf-8
lib = File.expand_path('../lib', __FILE__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require 'manageiq/messaging/version'
Gem::Specification.new do |spec|
spec.name = "manageiq-messaging"
spec.version = ManageIQ::Messaging::VERSION
spec.required_ruby_version = '>= 3.0'
spec.authors = ["ManageIQ Authors"]
spec.summary = 'Client library for ManageIQ components to exchange messages through its internal message bus.'
spec.description = 'Client library for ManageIQ components to exchange messages through its internal message bus.'
spec.homepage = 'https://github.com/ManageIQ/manageiq-messaging'
spec.license = 'MIT'
spec.files = `git ls-files -z`.split("\x0").reject do |f|
f.match(%r{^(test|spec|features)/})
end
spec.metadata = {
"changelog_uri" => "https://github.com/ManageIQ/manageiq-messaging/blob/master/CHANGELOG.md",
"source_code_uri" => "https://github.com/ManageIQ/manageiq-messaging/",
"bug_tracker_uri" => "https://github.com/ManageIQ/manageiq-messaging/issues"
}
spec.bindir = "exe"
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]
spec.add_dependency 'activesupport', '>= 7.0.8', "<8.0"
spec.add_dependency 'rdkafka', '~> 0.8'
spec.add_dependency 'stomp', '~> 1.4.4'
spec.add_development_dependency "bundler"
spec.add_development_dependency "manageiq-style"
spec.add_development_dependency "rake", ">= 12.3.3"
spec.add_development_dependency "rspec", "~> 3.0"
spec.add_development_dependency "simplecov", ">= 0.21.2"
end