-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathem-eventsource.gemspec
26 lines (25 loc) · 1.12 KB
/
em-eventsource.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
# encoding: utf-8
Gem::Specification.new do |s|
s.name = "em-eventsource"
s.version = "0.3.2"
s.licenses = ["MIT"]
s.date = Time.now.utc.strftime("%Y-%m-%d")
s.homepage = "https://github.com/francois2metz/em-eventsource"
s.authors = "François de Metz"
s.email = "francois@2metz.fr"
s.description = <<-EOF
em-eventsource is an eventmachine library to consume Server-Sent Events streaming API.
You can find the specification here: http://dev.w3.org/html5/eventsource/
EOF
s.summary = "em-eventsource is an eventmachine library to consume Server-Sent Events streaming API."
s.extra_rdoc_files = %w(README.md)
s.files = Dir["README.md", "CHANGELOG.md", "Gemfile", "lib/**/*.rb"]
s.require_paths = ["lib"]
s.rubygems_version = %q{1.3.7}
s.add_dependency "eventmachine", "~> 1.0"
s.add_dependency "em-http-request", "~> 1.0"
s.add_development_dependency "minitest", ">= 2.0"
s.add_development_dependency "minitest-spec-context"
s.add_development_dependency "bundler"
s.add_development_dependency "rake"
end