Sha256: 20048d4d9a681749bb96358ede965cf4db8dcb7c71c29ec38f1ae3e77175fa6e

Contents?: true

Size: 1.24 KB

Versions: 1

Compression:

Stored size: 1.24 KB

Contents

# -*- coding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)

# Maintain your gem's version:
require "bunny_carrot/version"

# Describe your gem and declare its dependencies:
Gem::Specification.new do |s|
  s.name        = "bunny_carrot"
  s.version     = BunnyCarrot::VERSION
  s.authors     = ["Paired by Andrzej Śliwa + Vladimir Zhukov, bonusbox GmbH"]
  s.email       = ["andrzej.sliwa@i-tool.eu, voldyjeengle@gmail.com"]
  s.homepage    = "https://github.com/bonusboxme/bunny_carrot"
  s.summary     = "The carrot for bunny. A rabbitmq-consumer."
  s.description = <<-STR
BunnyCarrot is a worker implementation using the rabbitmq-client bunny.
Based on actor-models it allows concurrent and supervised consumer-strategies.
STR
  s.files       = `git ls-files`.split($/)
  s.license     = "MIT"
  s.executables   = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
  s.test_files    = s.files.grep(%r{^(test|spec|features)/})
  s.require_paths = ["lib"]

  s.add_dependency "concurrent-ruby", "~> 0.5"
  s.add_dependency "hamster", "~> 0.4", ">= 0.4.3"
  s.add_dependency "bunny", "~> 0.10", ">= 0.10.8"
  s.add_development_dependency "bundler", "~> 1.5"
  s.add_development_dependency "rake", "~> 10.2"
  s.add_development_dependency "rspec", "~> 2.14"
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bunny_carrot-0.0.2 bunny_carrot.gemspec