Sha256: 1de3b0f90bd78b50ea35c9a9024afa1c5f5f45c945d483a30e010d00598fe634

Contents?: true

Size: 949 Bytes

Versions: 2

Compression:

Stored size: 949 Bytes

Contents

lib = File.expand_path("lib", __dir__)
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
require "cgi/version"

Gem::Specification.new do |spec|
  spec.name          = "cgi"
  spec.version       = CGI::VERSION
  spec.authors       = ["Hiroshi SHIBATA"]
  spec.email         = ["hsbt@ruby-lang.org"]

  spec.summary       = %q{Support for the Common Gateway Interface protocol.}
  spec.description   = %q{Support for the Common Gateway Interface protocol.}
  spec.homepage      = "https://github.com/ruby/cgi"

  spec.metadata["homepage_uri"] = spec.homepage
  spec.metadata["source_code_uri"] = spec.homepage

  spec.files         = Dir.chdir(File.expand_path('..', __FILE__)) do
    `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
  end
  spec.bindir        = "exe"
  spec.executables   = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
  spec.require_paths = ["lib"]
  spec.license = "BSD-2-Clause"
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
cgi-0.1.1 cgi.gemspec
cgi-0.1.0 cgi.gemspec