rjack-httpclient-4 4.2.2.0-java → 4.2.3.0-java
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/History.rdoc +4 -0
- data/Manifest.txt +2 -2
- data/NOTICE.txt +1 -1
- data/README.rdoc +1 -1
- data/lib/rjack-httpclient-4.rb +1 -1
- data/lib/rjack-httpclient-4/base.rb +2 -2
- data/lib/rjack-httpclient-4/{httpclient-4.2.2.jar → httpclient-4.2.3.jar} +0 -0
- data/lib/rjack-httpclient-4/{httpcore-4.2.2.jar → httpcore-4.2.3.jar} +0 -0
- data/pom.xml +2 -2
- data/test/test_httpclient.rb +1 -1
- metadata +12 -6
data/History.rdoc
CHANGED
data/Manifest.txt
CHANGED
|
@@ -8,5 +8,5 @@ pom.xml
|
|
|
8
8
|
lib/rjack-httpclient-4/base.rb
|
|
9
9
|
lib/rjack-httpclient-4.rb
|
|
10
10
|
test/test_httpclient.rb
|
|
11
|
-
lib/rjack-httpclient-4/httpclient-4.2.
|
|
12
|
-
lib/rjack-httpclient-4/httpcore-4.2.
|
|
11
|
+
lib/rjack-httpclient-4/httpclient-4.2.3.jar
|
|
12
|
+
lib/rjack-httpclient-4/httpcore-4.2.3.jar
|
data/NOTICE.txt
CHANGED
data/README.rdoc
CHANGED
|
@@ -49,7 +49,7 @@ See {org.apache.http.client.HttpClient}[http://hc.apache.org/httpcomponents-clie
|
|
|
49
49
|
|
|
50
50
|
=== rjack-httpclient-4 gem
|
|
51
51
|
|
|
52
|
-
Copyright (c) 2008-
|
|
52
|
+
Copyright (c) 2008-2013 David Kellum
|
|
53
53
|
|
|
54
54
|
Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
55
55
|
may not use this file except in compliance with the License. You
|
data/lib/rjack-httpclient-4.rb
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
#--
|
|
2
|
-
# Copyright (c) 2008-
|
|
2
|
+
# Copyright (c) 2008-2013 David Kellum
|
|
3
3
|
#
|
|
4
4
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
5
5
|
# may not use this file except in compliance with the License. You
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
|
|
17
17
|
module RJack
|
|
18
18
|
module HTTPClient4
|
|
19
|
-
HTTPCLIENT_VERSION = '4.2.
|
|
19
|
+
HTTPCLIENT_VERSION = '4.2.3'
|
|
20
20
|
VERSION = HTTPCLIENT_VERSION + '.0'
|
|
21
21
|
|
|
22
22
|
HTTPCLIENT_DIR = File.dirname( __FILE__ ) # :nodoc:
|
|
Binary file
|
|
Binary file
|
data/pom.xml
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
<dependency>
|
|
17
17
|
<groupId>org.apache.httpcomponents</groupId>
|
|
18
18
|
<artifactId>httpclient</artifactId>
|
|
19
|
-
<version>4.2.
|
|
19
|
+
<version>4.2.3</version>
|
|
20
20
|
<exclusions>
|
|
21
21
|
<exclusion>
|
|
22
22
|
<groupId>commons-logging</groupId>
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
<dependency>
|
|
29
29
|
<groupId>org.apache.httpcomponents</groupId>
|
|
30
30
|
<artifactId>httpcore</artifactId>
|
|
31
|
-
<version>4.2.
|
|
31
|
+
<version>4.2.3</version>
|
|
32
32
|
</dependency>
|
|
33
33
|
|
|
34
34
|
<!--
|
data/test/test_httpclient.rb
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
#.hashdot.profile += jruby-shortlived
|
|
3
3
|
|
|
4
4
|
#--
|
|
5
|
-
# Copyright (c) 2008-
|
|
5
|
+
# Copyright (c) 2008-2013 David Kellum
|
|
6
6
|
#
|
|
7
7
|
# Licensed under the Apache License, Version 2.0 (the "License"); you
|
|
8
8
|
# may not use this file except in compliance with the License. You
|
metadata
CHANGED
|
@@ -2,14 +2,14 @@
|
|
|
2
2
|
name: rjack-httpclient-4
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
4
|
prerelease:
|
|
5
|
-
version: 4.2.
|
|
5
|
+
version: 4.2.3.0
|
|
6
6
|
platform: java
|
|
7
7
|
authors:
|
|
8
8
|
- David Kellum
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date:
|
|
12
|
+
date: 2013-02-06 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rjack-slf4j
|
|
@@ -37,15 +37,21 @@ dependencies:
|
|
|
37
37
|
name: rjack-commons-codec
|
|
38
38
|
version_requirements: !ruby/object:Gem::Requirement
|
|
39
39
|
requirements:
|
|
40
|
-
- -
|
|
40
|
+
- - ! '>='
|
|
41
41
|
- !ruby/object:Gem::Version
|
|
42
42
|
version: 1.6.0
|
|
43
|
+
- - <
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.8'
|
|
43
46
|
none: false
|
|
44
47
|
requirement: !ruby/object:Gem::Requirement
|
|
45
48
|
requirements:
|
|
46
|
-
- -
|
|
49
|
+
- - ! '>='
|
|
47
50
|
- !ruby/object:Gem::Version
|
|
48
51
|
version: 1.6.0
|
|
52
|
+
- - <
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '1.8'
|
|
49
55
|
none: false
|
|
50
56
|
prerelease: false
|
|
51
57
|
type: :runtime
|
|
@@ -116,8 +122,8 @@ files:
|
|
|
116
122
|
- lib/rjack-httpclient-4/base.rb
|
|
117
123
|
- lib/rjack-httpclient-4.rb
|
|
118
124
|
- test/test_httpclient.rb
|
|
119
|
-
- lib/rjack-httpclient-4/httpclient-4.2.
|
|
120
|
-
- lib/rjack-httpclient-4/httpcore-4.2.
|
|
125
|
+
- lib/rjack-httpclient-4/httpclient-4.2.3.jar
|
|
126
|
+
- lib/rjack-httpclient-4/httpcore-4.2.3.jar
|
|
121
127
|
homepage: http://rjack.rubyforge.org/httpclient-4
|
|
122
128
|
licenses: []
|
|
123
129
|
post_install_message:
|