2012-05-04 20:45:47 +00:00
|
|
|
# -*- encoding: utf-8 -*-
|
|
|
|
require File.expand_path('../lib/rack-emstream/version', __FILE__)
|
|
|
|
|
|
|
|
Gem::Specification.new do |gem|
|
|
|
|
gem.authors = ["John Bintz"]
|
|
|
|
gem.email = ["john@coswellproductions.com"]
|
2012-07-09 20:59:15 +00:00
|
|
|
gem.description = %q{Super-simple Rack streaming with Thin}
|
|
|
|
gem.summary = %q{Super-simple Rack streaming with Thin}
|
|
|
|
gem.homepage = "http://github.com/johnbintz/rack-emstream/"
|
2012-05-04 20:45:47 +00:00
|
|
|
|
|
|
|
gem.files = `git ls-files`.split($\)
|
|
|
|
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
|
|
|
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
|
|
|
gem.name = "rack-emstream"
|
|
|
|
gem.require_paths = ["lib"]
|
2012-07-09 20:57:47 +00:00
|
|
|
gem.version = Rack::EMStream::VERSION
|
2012-05-04 20:45:47 +00:00
|
|
|
|
2012-06-01 22:25:24 +00:00
|
|
|
gem.add_dependency 'eventmachine'
|
2012-05-04 20:45:47 +00:00
|
|
|
end
|