File: fcgi.gemspec

package info (click to toggle)
ruby-fcgi 0.9.2.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 128 kB
  • sloc: ansic: 543; ruby: 523; makefile: 10
file content (34 lines) | stat: -rw-r--r-- 1,044 bytes parent folder | download
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
Gem::Specification.new do |s|
  s.name = %q{fcgi}
  s.version = "0.9.2.2"
  s.license = "MIT"

  s.authors = [%q{mva}]
  s.date = %q{2022-10-17}
  s.description = %q{FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. This version aims to be compatible with both 1.8.x and 1.9.x versions of Ruby, and also will be ported to 2.0.x. It has been hacked to work with Ruby 3.0.x.}
  s.email = %q{mva@mva.name}
  s.extensions = [%q{ext/fcgi/extconf.rb}]
  s.extra_rdoc_files = [
    "LICENSE",
    "README.rdoc",
    "README.signals"
  ]
  s.rdoc_options = ["--charset=UTF-8"]
  s.files = [
    "VERSION",
    "ext/fcgi/MANIFEST",
    "ext/fcgi/Makefile",
    "ext/fcgi/extconf.rb",
    "ext/fcgi/fcgi.c",
    "lib/fcgi.rb",
    "fcgi.gemspec"
  ]
  s.test_files = [
    "test/helper.rb",
    "test/test_fcgi.rb"
  ]
  s.homepage = %q{http://github.com/alphallc/ruby-fcgi-ng}
  s.require_paths = [%q{lib}]
  s.summary = %q{FastCGI library for Ruby.}
end