Sha256: 5aa91123679d07261484d36b69d9124d454e8f1efff1639ff3ca27d5bb8d5bb9

Contents?: true

Size: 1.66 KB

Versions: 1

Compression:

Stored size: 1.66 KB

Contents

# -*- encoding: utf-8 -*-
$:.push File.expand_path("../lib", __FILE__)
require "woodhouse/version"

Gem::Specification.new do |s|
  s.name        = "woodhouse"
  s.version     = Woodhouse::VERSION
  s.platform    = Gem::Platform::RUBY
  s.authors     = ["Matthew Boeh"]
  s.email       = ["matt@crowdcompass.com", "matthew.boeh@gmail.com"]
  s.homepage    = "http://github.com/mboeh/woodhouse"
  s.summary     = %q{An AMQP-based background worker system for Ruby}
  s.description = %q{An AMQP-based background worker system for Ruby designed to make managing heterogenous tasks relatively easy.
  
  The use case for Woodhouse is for reliable and sane performance in situations where jobs on a single queue may vary significantly in length. The goal is to permit large numbers of quick jobs to be serviced even when many slow jobs are in the queue. A secondary goal is to provide a sane way for jobs on a given queue to be given special priority or dispatched to a server more suited to them.
  
  Clients (i.e., your application) may be using either Ruby 1.9 in any VM.}

  s.rubyforge_project = "woodhouse"

  s.add_dependency 'celluloid'
  s.add_dependency 'bunny', "~> 0.9.0.pre4"
  s.add_dependency 'connection_pool'
  s.add_dependency 'json'

  s.add_development_dependency 'rspec', '~> 1.3.1'
  s.add_development_dependency 'rake'
  s.add_development_dependency 'guard'
  s.add_development_dependency 'guard-rspec'
  s.add_development_dependency 'mocha'

  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"]
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
woodhouse-0.1.2 woodhouse.gemspec