public
Description: Simple support for using SCGI in ruby apps, such as Rails
Homepage: http://code.jeremyevans.net/doc/ruby-scgi/
Clone URL: git://github.com/jeremyevans/ruby-scgi.git
ruby-scgi / scgi.gemspec
100755 14 lines (13 sloc) 0.441 kb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
spec = Gem::Specification.new do |s|
  s.name = "scgi"
  s.version = "0.9.1"
  s.author = "Jeremy Evans"
  s.email = "code@jeremyevans.net"
  s.platform = Gem::Platform::RUBY
  s.summary = "Simple support for using SCGI in ruby apps, such as Rails"
  s.files = %w'LICENSE README lib/scgi.rb'
s.require_paths = ["lib"]
s.has_rdoc = true
s.rdoc_options = %w'--inline-source --line-numbers README lib'
s.rubyforge_project = 'scgi'
end