-
Notifications
You must be signed in to change notification settings - Fork 2
/
local_bus.gemspec
43 lines (36 loc) · 1.69 KB
/
local_bus.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
42
43
# frozen_string_literal: true
require_relative "lib/local_bus/version"
Gem::Specification.new do |s|
s.name = "local_bus"
s.version = LocalBus::VERSION
s.authors = ["Nate Hopkins (hopsoft)"]
s.email = ["natehop@gmail.com"]
s.homepage = "https://github.com/hopsoft/local_bus"
s.summary = "A lightweight pub/sub system for decoupled intra-process communication in Ruby applications"
s.description = <<~DESC
LocalBus is a lightweight yet powerful pub/sub system for Ruby applications that enables decoupled communication within a single process.
It offers both non-blocking I/O and thread pool processing modes, robust error handling, and fine-grained concurrency controls.
Perfect for organizing event-driven architectures, handling background jobs, and managing complex workflows without external dependencies."
DESC
s.license = "MIT"
s.metadata["homepage_uri"] = s.homepage
s.metadata["source_code_uri"] = s.homepage
s.metadata["changelog_uri"] = s.homepage + "/blob/main/CHANGELOG.md"
s.files = Dir["{lib}/**/*", "MIT-LICENSE", "README.md"]
s.required_ruby_version = ">= 3.0"
s.add_dependency "async"
s.add_dependency "concurrent-ruby"
s.add_dependency "zeitwerk"
s.add_development_dependency "amazing_print"
s.add_development_dependency "fiddle"
s.add_development_dependency "minitest"
s.add_development_dependency "minitest-reporters"
s.add_development_dependency "ostruct"
s.add_development_dependency "pry-byebug"
s.add_development_dependency "pry-doc"
s.add_development_dependency "rake"
s.add_development_dependency "rbs-inline"
s.add_development_dependency "standard"
s.add_development_dependency "tocer"
s.add_development_dependency "yard"
end