hc-httpclient 3.1.1 → 3.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -2
- data/README.txt +2 -2
- data/Rakefile +3 -4
- data/lib/hc-httpclient/base.rb +2 -2
- metadata +4 -4
data/History.txt
CHANGED
data/README.txt
CHANGED
@@ -43,7 +43,7 @@ See {org.apache.commons.HttpClient}[http://hc.apache.org/httpclient-3.x/apidocs/
|
|
43
43
|
|
44
44
|
=== hc-httpclient ruby gem
|
45
45
|
|
46
|
-
Copyright (
|
46
|
+
Copyright (c) 2009 David Kellum
|
47
47
|
|
48
48
|
Licensed under the Apache License, Version 2.0 (the "License"); you
|
49
49
|
may not use this file except in compliance with the License. You
|
@@ -59,7 +59,7 @@ permissions and limitations under the License.
|
|
59
59
|
|
60
60
|
=== Jakarta Commons HTTPClient (java)
|
61
61
|
|
62
|
-
Copyright 1999-2007 The Apache Software Foundation
|
62
|
+
Copyright (c) 1999-2007 The Apache Software Foundation
|
63
63
|
|
64
64
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
65
65
|
contributor license agreements. See the NOTICE file distributed with
|
data/Rakefile
CHANGED
@@ -27,7 +27,7 @@ ASSEMBLY = "target/httpclient-1.0-bin.dir"
|
|
27
27
|
|
28
28
|
desc "Update the Manifest with actual jars"
|
29
29
|
task :manifest => [ ASSEMBLY ] do
|
30
|
-
out = File.new( 'Manifest.txt', 'w' )
|
30
|
+
out = File.new( 'Manifest.txt', 'w' )
|
31
31
|
begin
|
32
32
|
out.write <<END
|
33
33
|
History.txt
|
@@ -69,7 +69,7 @@ task :mvn_clean do
|
|
69
69
|
sh( 'mvn clean' )
|
70
70
|
end
|
71
71
|
|
72
|
-
task :clean => :mvn_clean
|
72
|
+
task :clean => :mvn_clean
|
73
73
|
|
74
74
|
task :tag do
|
75
75
|
tag = "hc-httpclient-#{HC::HTTPClient::VERSION}"
|
@@ -84,7 +84,6 @@ end
|
|
84
84
|
hoe = Hoe.new( "hc-httpclient", HC::HTTPClient::VERSION ) do |p|
|
85
85
|
p.developer( "David Kellum", "dek-oss@gravitext.com" )
|
86
86
|
p.extra_deps << [ 'slf4j', '~> 1.5.6.1' ]
|
87
|
-
p.extra_dev_deps << [ 'logback', '>=
|
87
|
+
p.extra_dev_deps << [ 'logback', '>= 0.9.14.1' ]
|
88
88
|
p.rubyforge_name = "rjack"
|
89
|
-
p.rdoc_pattern = /^(lib.*\.(rb|txt))|[^\/]*\.txt$/
|
90
89
|
end
|
data/lib/hc-httpclient/base.rb
CHANGED
metadata
CHANGED
@@ -57,12 +57,12 @@ requirements: []
|
|
57
57
|
|
58
58
|
authors:
|
59
59
|
- David Kellum
|
60
|
-
date: 2009-
|
60
|
+
date: 2009-05-29 07:00:00 +00:00
|
61
61
|
platform: ruby
|
62
62
|
test_files:
|
63
63
|
- test/test_httpclient.rb
|
64
64
|
version: !ruby/object:Gem::Version
|
65
|
-
version: 3.1.
|
65
|
+
version: 3.1.2
|
66
66
|
require_paths:
|
67
67
|
- lib
|
68
68
|
dependencies:
|
@@ -81,7 +81,7 @@ dependencies:
|
|
81
81
|
requirements:
|
82
82
|
- - '>='
|
83
83
|
- !ruby/object:Gem::Version
|
84
|
-
version:
|
84
|
+
version: 0.9.14.1
|
85
85
|
version:
|
86
86
|
type: :development
|
87
87
|
version_requirement:
|
@@ -91,7 +91,7 @@ dependencies:
|
|
91
91
|
requirements:
|
92
92
|
- - '>='
|
93
93
|
- !ruby/object:Gem::Version
|
94
|
-
version: 1.
|
94
|
+
version: 1.12.2
|
95
95
|
version:
|
96
96
|
type: :development
|
97
97
|
version_requirement:
|