-
Notifications
You must be signed in to change notification settings - Fork 0
/
faye.gemspec
35 lines (30 loc) · 1.32 KB
/
faye.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
29
30
31
32
33
34
35
Gem::Specification.new do |s|
s.name = "faye"
s.version = "0.6.7"
s.summary = "Simple pub/sub messaging for the web"
s.author = "James Coglan"
s.email = "[email protected]"
s.homepage = "http://faye.jcoglan.com"
s.extra_rdoc_files = %w[README.rdoc]
s.rdoc_options = %w[--main README.rdoc]
# It is important that the JavaScript file listed here is not removed: it
# contains the browser client and the gem should fail to build without it. You
# should generate it by running `bundle exec jake` in the project root.
s.files = %w[History.txt README.rdoc lib/faye-browser-min.js] +
Dir.glob("{spec,lib}/**/*")
s.require_paths = %w[lib]
s.add_dependency "eventmachine", "~> 0.12.0"
s.add_dependency "em-http-request", "~> 0.3"
s.add_dependency "em-hiredis", ">= 0.0.1"
s.add_dependency "json", ">= 1.0"
s.add_dependency "thin", "~> 1.2"
s.add_dependency "rack", ">= 1.0"
s.add_development_dependency "jake"
s.add_development_dependency "rake"
s.add_development_dependency "rspec", "~> 2.5.0"
s.add_development_dependency "rack-proxy"
s.add_development_dependency "rack-test"
s.add_development_dependency "RedCloth", "~> 3.0.0"
s.add_development_dependency "sinatra"
s.add_development_dependency "staticmatic"
end