Sha256: ce706b3e50593bbec2102075f759e3a344ce56daa2e16b29602f2d844af55cc9

Contents?: true

Size: 1.84 KB

Versions: 1

Compression:

Stored size: 1.84 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 1.8 and 1.9}
  s.description = %q{An AMQP-based background worker system for Ruby 1.8 and 1.9 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.8 or 1.9 in any VM. Worker processes currently only support JRuby in 1.8 or 1.9 mode efficiently. MRI 1.9 and Rubinius support is planned.}

  s.rubyforge_project = "woodhouse"

  s.add_dependency 'fiber18', '>= 1.0.1'
  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.1 woodhouse.gemspec