public
Description: A high performance clustering proxy / web server for web applications.
Homepage: http://swiftiply.swiftcore.org
Clone URL: git://github.com/wyhaines/swiftiply.git
Click here to lend your support to: swiftiply and make a donation at www.pledgie.com !
swiftiply / swiftiply.gemspec
100644 45 lines (40 sloc) 1.445 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#####
# Swiftcore Swiftiply
# http://swiftiply.swiftcore.org
# Copyright 2007,2008 Kirk Haines
# wyhaines@gmail.com
#
# Licensed under the Ruby License. See the README for details.
#
#####
 
spec = Gem::Specification.new do |s|
  s.name = 'swiftiply'
  s.author = %q(Kirk Haines)
  s.email = %q(wyhaines@gmail.com)
  s.version = '0.6.4'
  s.summary = %q(A fast clustering proxy for web applications.)
  s.platform = Gem::Platform::RUBY
 
  s.has_rdoc = true
  s.rdoc_options = %w(--title Swiftcore::Swiftiply --main README --line-numbers)
  s.extra_rdoc_files = %w(README)
  s.extensions << 'ext/fastfilereader/extconf.rb'
s.extensions << 'ext/deque/extconf.rb'
s.extensions << 'ext/splaytree/extconf.rb'
  s.files = Dir['**/*']
s.executables = %w(swiftiply swiftiplied_mongrel_rails evented_mongrel_rails swiftiply_mongrel_rails)
s.require_paths = %w(src)
 
s.requirements << "Eventmachine 0.8.1 or higher."
s.add_dependency('eventmachine','>= 0.8.1')
  s.test_files = []
 
  s.rubyforge_project = %q(swiftiply)
  s.homepage = %q(http://swiftiply.swiftcore.org/)
  description = []
  File.open("README") do |file|
    file.each do |line|
      line.chomp!
      break if line.empty?
      description << "#{line.gsub(/\[\d\]/, '')}"
    end
  end
  s.description = description[1..-1].join(" ")
end