forked from defunkt/starling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstarling.gemspec
25 lines (21 loc) · 1.31 KB
/
starling.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
Gem::Specification.new do |s|
s.name = "starling"
s.version = "0.9.8"
s.authors = ["Blaine Cook", "Chris Wanstrath", "Britt Selvitelle", "Glenn Rempe", "Abdul-Rahman Advany"]
s.email = ["blaine@twitter.com", "chris@ozmm.org", "abdulrahman@advany.com"]
s.homepage = "http://github.com/starling/starling/"
s.summary = "Starling is a lightweight, transactional, distributed queue server"
s.description = s.summary
s.require_path = 'lib'
s.executables = ["starling", "starling_top"]
# get this easily and accurately by running 'Dir.glob("{lib,test}/**/*")'
# in an IRB session. However, GitHub won't allow that command hence
# we spell it out.
s.files = ["README.rdoc", "LICENSE", "CHANGELOG", "Rakefile", "lib/starling/handler.rb", "lib/starling/persistent_queue.rb", "lib/starling/queue_collection.rb", "lib/starling/server_runner.rb", "lib/starling/server.rb", "lib/starling.rb", "etc/starling.redhat", "etc/starling.ubuntu", "etc/sample-config.yml"]
s.test_files = ["spec/starling_server_spec.rb"]
s.has_rdoc = true
s.rdoc_options = ["--quiet", "--title", "starling documentation", "--opname", "index.html", "--line-numbers", "--main", "README.rdoc", "--inline-source"]
s.extra_rdoc_files = ["README.rdoc", "CHANGELOG", "LICENSE"]
s.add_dependency 'memcache-client'
s.add_dependency 'eventmachine', [">= 0.12.0"]
end