Sha256: d1a97866ea0db1cdf0ecefa7d246dd510e35ef213c96baf2ccd8fb8b1aaddbb9
Contents?: true
Size: 1.03 KB
Versions: 1
Compression:
Stored size: 1.03 KB
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("sucker_punch") s.add_dependency("mono_logger") s.add_development_dependency("rake") s.add_development_dependency("rspec") end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
pwwka-0.0.2 | pwwka.gemspec |