cgi 0.1.0 → 0.3.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of cgi might be problematic. Click here for more details.

data/bin/setup DELETED
@@ -1,6 +0,0 @@
1
- #!/usr/bin/env bash
2
- set -euo pipefail
3
- IFS=$'\n\t'
4
- set -vx
5
-
6
- bundle install
data/cgi.gemspec DELETED
@@ -1,25 +0,0 @@
1
- lib = File.expand_path("lib", __dir__)
2
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
3
- require "cgi/version"
4
-
5
- Gem::Specification.new do |spec|
6
- spec.name = "cgi"
7
- spec.version = CGI::VERSION
8
- spec.authors = ["Hiroshi SHIBATA"]
9
- spec.email = ["hsbt@ruby-lang.org"]
10
-
11
- spec.summary = %q{Support for the Common Gateway Interface protocol.}
12
- spec.description = %q{Support for the Common Gateway Interface protocol.}
13
- spec.homepage = "https://github.com/ruby/cgi"
14
-
15
- spec.metadata["homepage_uri"] = spec.homepage
16
- spec.metadata["source_code_uri"] = spec.homepage
17
-
18
- spec.files = Dir.chdir(File.expand_path('..', __FILE__)) do
19
- `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
20
- end
21
- spec.bindir = "exe"
22
- spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
23
- spec.require_paths = ["lib"]
24
- spec.license = "BSD-2-Clause"
25
- end
data/lib/cgi/version.rb DELETED
@@ -1,3 +0,0 @@
1
- class CGI
2
- VERSION = "0.1.0"
3
- end