rack-environmental 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG +3 -0
- data/Rakefile +3 -2
- data/lib/{environmental.rb → rack/environmental.rb} +0 -0
- metadata +12 -2
data/CHANGELOG
CHANGED
@@ -1,3 +1,6 @@
|
|
1
|
+
1.0.1 (November 17, 2009)
|
2
|
+
* BUGFIX: Minor configuration tweaks to get the gem to work properly.
|
3
|
+
|
1
4
|
1.0.0 (November 17, 2009)
|
2
5
|
* BUGFIX: The body was being returned as a string, which is not in accordance with the Rack spec.
|
3
6
|
* BUGFIX: The update content length algorithm was incorrect.
|
data/Rakefile
CHANGED
@@ -4,7 +4,8 @@ require 'rubygems'
|
|
4
4
|
|
5
5
|
gem_spec = Gem::Specification.new do |s|
|
6
6
|
s.name = "rack-environmental"
|
7
|
-
s.version = "1.0.
|
7
|
+
s.version = "1.0.1"
|
8
|
+
s.add_dependency 'rack', '>= 1.0.0'
|
8
9
|
s.add_dependency 'nokogiri', '>= 1.4.0'
|
9
10
|
s.author = "Wyatt Greene"
|
10
11
|
s.email = "techiferous@gmail.com"
|
@@ -14,7 +15,7 @@ gem_spec = Gem::Specification.new do |s|
|
|
14
15
|
in (staging, test, etc.).
|
15
16
|
}
|
16
17
|
s.require_path = "lib"
|
17
|
-
s.files = ["lib/environmental.rb", "LICENSE", "Rakefile", "README",
|
18
|
+
s.files = ["lib/rack/environmental.rb", "LICENSE", "Rakefile", "README",
|
18
19
|
"CHANGELOG"]
|
19
20
|
s.homepage = "http://github.com/techiferous/rack-environmental"
|
20
21
|
s.requirements << "none"
|
File without changes
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rack-environmental
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Wyatt Greene
|
@@ -12,6 +12,16 @@ cert_chain: []
|
|
12
12
|
date: 2009-11-17 00:00:00 -05:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
16
|
+
name: rack
|
17
|
+
type: :runtime
|
18
|
+
version_requirement:
|
19
|
+
version_requirements: !ruby/object:Gem::Requirement
|
20
|
+
requirements:
|
21
|
+
- - ">="
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: 1.0.0
|
24
|
+
version:
|
15
25
|
- !ruby/object:Gem::Dependency
|
16
26
|
name: nokogiri
|
17
27
|
type: :runtime
|
@@ -31,7 +41,7 @@ extensions: []
|
|
31
41
|
extra_rdoc_files: []
|
32
42
|
|
33
43
|
files:
|
34
|
-
- lib/environmental.rb
|
44
|
+
- lib/rack/environmental.rb
|
35
45
|
- LICENSE
|
36
46
|
- Rakefile
|
37
47
|
- README
|