-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcosmonats.gemspec
More file actions
33 lines (29 loc) · 1.27 KB
/
cosmonats.gemspec
File metadata and controls
33 lines (29 loc) · 1.27 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
# frozen_string_literal: true
require_relative "lib/cosmo/version"
Gem::Specification.new do |s|
s.name = "cosmonats"
s.version = Cosmo::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Dmitry Vorotilin"]
s.email = ["d.vorotilin@gmail.com"]
s.homepage = "https://github.com/bitsbeam/cosmonats"
s.summary = "Lightweight background and stream processing"
s.description = "Lightweight background and stream processing for Ruby"
s.license = "LGPL-3.0"
s.bindir = "bin"
s.executables = ["cosmo"]
s.require_paths = ["lib"]
s.files = Dir["bin/cosmo", "lib/**/*", "sig/**/*", "LICENSE.txt", "README.md"]
s.metadata = {
"homepage_uri" => "https://github.com/bitsbeam/cosmonats",
"bug_tracker_uri" => "https://github.com/bitsbeam/cosmonats/issues",
"documentation_uri" => "https://github.com/bitsbeam/cosmonats/blob/main/README.md",
"changelog_uri" => "https://github.com/bitsbeam/cosmonats/blob/main/CHANGELOG.md",
"source_code_uri" => "https://github.com/bitsbeam/cosmonats",
"rubygems_mfa_required" => "true"
}
s.required_ruby_version = ">= 3.1.0"
s.add_dependency "logger", ">= 1.7"
s.add_dependency "nats-pure", "~> 2.5"
s.add_dependency "rack", "~> 3.0"
end