-
Notifications
You must be signed in to change notification settings - Fork 1
/
harmoniser.gemspec
28 lines (22 loc) · 1.05 KB
/
harmoniser.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
# frozen_string_literal: true
require_relative "lib/harmoniser/version"
Gem::Specification.new do |spec|
spec.name = "harmoniser"
spec.version = Harmoniser::VERSION
spec.authors = ["Jose Lloret"]
spec.email = ["[email protected]"]
spec.summary = "A minimalistic approach to interact with RabbitMQ"
spec.description = "A declarative approach to communication with RabbitMQ that simplifies the integration of publishing and consuming messages."
spec.homepage = "https://github.com/jollopre/harmoniser"
spec.license = "MIT"
spec.required_ruby_version = ">= 3.2"
spec.metadata = {
"homepage_uri" => spec.homepage,
"source_code_uri" => "https://github.com/jollopre/harmoniser",
"changelog_uri" => "https://github.com/jollopre/harmoniser/blob/master/CHANGELOG.md"
}
spec.files = Dir["lib/**/*.rb"] + Dir["bin/*"] + Dir["docs/**/*", "CHANGELOG.md", "CODE_OF_CONDUCT.md", "harmoniser.gemspec", "LICENSE.txt", "README.md"]
spec.executables = ["harmoniser"]
spec.require_paths = ["lib"]
spec.add_runtime_dependency "bunny", "~> 2.23"
end