http_headers 0.0.2.2 → 0.0.2.3
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.
- data/README.rdoc +4 -4
- data/http_headers.gemspec +7 -4
- metadata +5 -5
data/README.rdoc
CHANGED
|
@@ -14,9 +14,7 @@ against.
|
|
|
14
14
|
|
|
15
15
|
== Installation
|
|
16
16
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
sudo gem install jsl-http_headers
|
|
17
|
+
gem install http_headers
|
|
20
18
|
|
|
21
19
|
== Quick Start
|
|
22
20
|
|
|
@@ -58,4 +56,6 @@ failure cases indicating where the library can be improved.
|
|
|
58
56
|
|
|
59
57
|
== Author
|
|
60
58
|
|
|
61
|
-
Justin S. Leitgeb, <justin@
|
|
59
|
+
Justin S. Leitgeb, <justin@stackbuilders.com>
|
|
60
|
+
|
|
61
|
+
Copyright (c) 2010 {Stack Builders Inc.}[http://stackbuilders.com]
|
data/http_headers.gemspec
CHANGED
|
@@ -1,13 +1,16 @@
|
|
|
1
1
|
Gem::Specification.new do |s|
|
|
2
2
|
s.name = "http_headers"
|
|
3
|
-
s.version = "0.0.2.
|
|
4
|
-
s.date = "2009-05-25"
|
|
3
|
+
s.version = "0.0.2.3"
|
|
5
4
|
s.summary = "Library for parsing the Curl header_str into attributes"
|
|
6
5
|
s.email = "justin@phq.org"
|
|
7
6
|
s.homepage = "http://github.com/jsl/http_headers"
|
|
8
|
-
s.description =
|
|
7
|
+
s.description = <<-EOF
|
|
8
|
+
Simple, tested library to parses as HTTP header string into individual header fields.
|
|
9
|
+
Works with single as well as multi-valued attributes. Based on the HTTP 1.1 Header
|
|
10
|
+
Field definition.
|
|
11
|
+
EOF
|
|
9
12
|
s.has_rdoc = true
|
|
10
|
-
s.
|
|
13
|
+
s.author = "Justin Leitgeb"
|
|
11
14
|
s.files = [
|
|
12
15
|
"Rakefile",
|
|
13
16
|
"http_headers.gemspec",
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: http_headers
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
hash:
|
|
4
|
+
hash: 65
|
|
5
5
|
prerelease: false
|
|
6
6
|
segments:
|
|
7
7
|
- 0
|
|
8
8
|
- 0
|
|
9
9
|
- 2
|
|
10
|
-
-
|
|
11
|
-
version: 0.0.2.
|
|
10
|
+
- 3
|
|
11
|
+
version: 0.0.2.3
|
|
12
12
|
platform: ruby
|
|
13
13
|
authors:
|
|
14
14
|
- Justin Leitgeb
|
|
@@ -16,11 +16,11 @@ autorequire:
|
|
|
16
16
|
bindir: bin
|
|
17
17
|
cert_chain: []
|
|
18
18
|
|
|
19
|
-
date:
|
|
19
|
+
date: 2010-10-19 00:00:00 -04:00
|
|
20
20
|
default_executable:
|
|
21
21
|
dependencies: []
|
|
22
22
|
|
|
23
|
-
description:
|
|
23
|
+
description: " Simple, tested library to parses as HTTP header string into individual header fields.\n Works with single as well as multi-valued attributes. Based on the HTTP 1.1 Header\n Field definition.\n"
|
|
24
24
|
email: justin@phq.org
|
|
25
25
|
executables: []
|
|
26
26
|
|