-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrack-stream.gemspec
25 lines (21 loc) · 977 Bytes
/
rack-stream.gemspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
$:.push File.expand_path("../lib", __FILE__)
Gem::Specification.new do |s|
s.name = "rack-stream"
s.version = "0.0.5"
s.platform = Gem::Platform::RUBY
s.authors = ["Jerry Cheung"]
s.email = ["[email protected]"]
s.homepage = "https://github.com/jch/rack-stream"
s.summary = %q{Rack middleware for building multi-protocol streaming rack endpoints}
s.description = %q{Rack middleware for building multi-protocol streaming rack endpoints}
s.license = "BSD"
s.rubyforge_project = "rack-stream"
s.add_runtime_dependency 'rack'
s.add_runtime_dependency 'eventmachine'
s.add_runtime_dependency 'faye-websocket'
s.add_runtime_dependency 'em-synchrony'
s.files = `git ls-files`.split("\n").select {|f| f !~ /^example/}
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