This repository has been archived by the owner on Mar 29, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
pwwka.gemspec
executable file
·36 lines (34 loc) · 1.72 KB
/
pwwka.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
# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require 'pwwka/version'
Gem::Specification.new do |s|
s.name = "pwwka"
s.version = Pwwka::VERSION
s.platform = Gem::Platform::RUBY
s.authors = ["Stitch Fix Engineering","Andrew Peterson","Bill Eisenhauer","Dave Copeland","David A McClain","Jonathan Dean","Nick Reavill","Simeon Willbanks"]
s.email = ["[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]","[email protected]" ]
s.homepage = "https://github.com/stitchfix/pwwka"
s.license = "MIT"
s.summary = "Send and receive messages via RabbitMQ"
s.description = "The purpose of this gem is to normalise the sending and
receiving of messages between Rails apps using the shared RabbitMQ
message bus"
s.files = `git ls-files`.split("\n")
s.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
s.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
s.require_paths = ["lib"]
s.add_runtime_dependency("bunny")
s.add_runtime_dependency("activesupport", ">= 6.0.0")
s.add_runtime_dependency("activemodel")
s.add_runtime_dependency("mono_logger")
s.add_development_dependency("rake")
s.add_development_dependency("rspec")
s.add_development_dependency("resque")
s.add_development_dependency("resque-retry", "~> 1.5.3")
s.add_development_dependency("sidekiq")
s.add_development_dependency("simplecov")
s.add_development_dependency("resqutils")
s.add_development_dependency("rainbow")
s.add_development_dependency("rspec_junit_formatter")
s.add_development_dependency("pry-byebug")
end