forked from celluloid/reel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathreel.gemspec
28 lines (24 loc) · 1.18 KB
/
reel.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
26
27
28
# -*- encoding: utf-8 -*-
require File.expand_path('../lib/reel/version', __FILE__)
Gem::Specification.new do |gem|
gem.authors = ["Tony Arcieri"]
gem.email = ["[email protected]"]
gem.description = "A Celluloid::IO-powered HTTP server"
gem.summary = "A Reel good HTTP server"
gem.homepage = "https://github.com/celluloid/reel"
gem.executables = `git ls-files -- bin/*`.split("\n").map{ |f| File.basename(f) }
gem.files = `git ls-files`.split("\n")
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
gem.name = "reel"
gem.require_paths = ["lib"]
gem.version = Reel::VERSION
gem.add_runtime_dependency 'celluloid', '>= 0.15.1'
gem.add_runtime_dependency 'celluloid-io', '>= 0.15.0'
gem.add_runtime_dependency 'http', '>= 0.6.0.pre'
gem.add_runtime_dependency 'http_parser.rb', '>= 0.6.0'
gem.add_runtime_dependency 'websocket-driver', '>= 0.5.1'
gem.add_development_dependency 'rake'
gem.add_development_dependency 'rspec', '>= 2.11.0'
gem.add_development_dependency 'certificate_authority'
gem.add_development_dependency 'websocket_parser', '>= 0.1.6'
end