public
Description:
Homepage: http://rubyforge.org/projects/starling
Clone URL: git://github.com/defunkt/starling.git
jacobat (author)
Fri Oct 17 02:00:41 -0700 2008
commit  68aa68ae3db76efdcc45661148c0440724686fff
tree    688f80ef5688c3c392f6500d9aacac7fcb443224
parent  7fef96db63b925b80f6cf939536ac0d29305f427
starling / starling.gemspec
100644 26 lines (21 sloc) 1.341 kb
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
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