# -*- encoding: utf-8 -*- Gem::Specification.new do |gem| gem.name = 'celluloid-coordinator' gem.version = '0.0.1.pre0' gem.platform = Gem::Platform::RUBY gem.summary = "Celluloid's implementation of a work-dispatch system." gem.description = 'A work-dispatch system where the coordinator is decoupled from the workers' gem.licenses = ['MIT'] gem.authors = ["Tim Carey-Smith", "Tony Arcieri", "digitalextremist //"] gem.email = ['tony.arcieri@gmail.com', 'code@extremist.digital'] gem.homepage = 'https://github.com/celluloid/celluloid-coordinator' gem.required_ruby_version = '>= 1.9.2' gem.required_rubygems_version = '>= 1.3.6' gem.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|examples|spec|features)/}) } gem.require_path = 'lib' gem.add_development_dependency 'bundler' gem.add_runtime_dependency 'celluloid', '>= 0.17.0.pre0' gem.add_runtime_dependency 'celluloid-essentials', '>= 0.20.0.pre0' end