Sha256: 2d6332372b3d042c3c8acbfb8c9d43e52c87035ca03132c17dcbc87b970824eb
Contents?: true
Size: 1019 Bytes
Versions: 5
Compression:
Stored size: 1019 Bytes
Contents
# -*- 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'] s.email = ['eng@stitchfix.com'] s.homepage = "http://www.stitchfix.com" 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_dependency("bunny") s.add_dependency("activesupport") s.add_dependency("activemodel") s.add_dependency("mono_logger") s.add_development_dependency("rake") s.add_development_dependency("rspec") end
Version data entries
5 entries across 5 versions & 1 rubygems
Version | Path |
---|---|
pwwka-0.3.2 | pwwka.gemspec |
pwwka-0.3.1 | pwwka.gemspec |
pwwka-0.3.0 | pwwka.gemspec |
pwwka-0.2.0 | pwwka.gemspec |
pwwka-0.1.0 | pwwka.gemspec |