forked from kevinrutherford/event_bus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevent_bg_bus.gemspec
23 lines (18 loc) · 1.02 KB
/
event_bg_bus.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Gem::Specification.new do |s|
s.name = 'event_bg_bus'
s.version = '0.1.0'
s.date = '2022-02-19'
s.summary = 'A simple pubsub event bus for Ruby applications with sidekiq background support'
s.description = 'event_bus provides support for application-wide events, without coupling the publishing and subscribing objects or classes to each other'
s.authors = ['Kevin Rutherford', 'Ahmed Abdel Razzak']
s.email = ['[email protected]', '[email protected]']
s.homepage = 'http://github.com/artmees/event_bg_bus'
s.add_development_dependency 'rake', '~> 10.0'
s.add_development_dependency 'rspec', '~> 2.12'
s.add_development_dependency 'simplecov', '~> 0'
s.add_development_dependency 'sidekiq', '~> 6'
s.add_runtime_dependency 'aws-sdk-eventbridge', '~> 1'
s.files = Dir['lib/**/*.rb'] + Dir['spec/**/*.rb'] + Dir['[A-Z]*'] + Dir['.rspec'] + Dir['.yardopts']
s.test_files = Dir['spec/**/*.rb']
s.require_path = 'lib'
end