rjack-httpclient-4 4.0.3.0-java → 4.1.1.0-java
Sign up to get free protection for your applications and to get access to all the features.
- data/History.rdoc +3 -0
- data/Manifest.txt +2 -2
- data/NOTICE.txt +1 -1
- data/README.rdoc +3 -2
- data/Rakefile +2 -3
- data/assembly.xml +1 -0
- data/lib/rjack-httpclient-4.rb +1 -1
- data/lib/rjack-httpclient-4/base.rb +2 -2
- data/lib/rjack-httpclient-4/httpclient-4.1.1.jar +0 -0
- data/lib/rjack-httpclient-4/httpcore-4.1.jar +0 -0
- data/pom.xml +9 -15
- data/test/test_httpclient.rb +1 -1
- metadata +15 -40
- data/lib/rjack-httpclient-4/httpclient-4.0.3.jar +0 -0
- data/lib/rjack-httpclient-4/httpcore-4.0.1.jar +0 -0
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.
|
12
|
-
lib/rjack-httpclient-4/httpcore-4.
|
11
|
+
lib/rjack-httpclient-4/httpclient-4.1.1.jar
|
12
|
+
lib/rjack-httpclient-4/httpcore-4.1.jar
|
data/NOTICE.txt
CHANGED
data/README.rdoc
CHANGED
@@ -1,7 +1,8 @@
|
|
1
1
|
= rjack-httpclient-4
|
2
2
|
|
3
|
+
* http://rjack.rubyforge.org/httpclient-4
|
3
4
|
* http://rjack.rubyforge.org
|
4
|
-
*
|
5
|
+
* https://github.com/dekellum/rjack
|
5
6
|
|
6
7
|
== Description
|
7
8
|
|
@@ -48,7 +49,7 @@ See {org.apache.http.client.HttpClient}[http://hc.apache.org/httpcomponents-clie
|
|
48
49
|
|
49
50
|
=== rjack-httpclient-4 gem
|
50
51
|
|
51
|
-
Copyright (c) 2008-
|
52
|
+
Copyright (c) 2008-2011 David Kellum
|
52
53
|
|
53
54
|
Licensed under the Apache License, Version 2.0 (the "License"); you
|
54
55
|
may not use this file except in compliance with the License. You
|
data/Rakefile
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH << './lib'
|
|
4
4
|
require 'rjack-httpclient-4/base'
|
5
5
|
|
6
6
|
require 'rubygems'
|
7
|
-
gem 'rjack-tarpit', '~> 1.
|
7
|
+
gem 'rjack-tarpit', '~> 1.3.0'
|
8
8
|
require 'rjack-tarpit'
|
9
9
|
|
10
10
|
include RJack
|
@@ -18,8 +18,7 @@ t.specify do |h|
|
|
18
18
|
h.extra_deps += [ [ 'rjack-slf4j', '>= 1.5.8', '< 1.7' ],
|
19
19
|
[ 'rjack-commons-codec', '~> 1.4.0' ] ]
|
20
20
|
h.extra_dev_deps << [ 'rjack-logback', '>= 0.9.18', '< 2.0' ]
|
21
|
-
h.
|
22
|
-
h.remote_rdoc_dir = "httpclient-4"
|
21
|
+
h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/httpclient-4"
|
23
22
|
end
|
24
23
|
|
25
24
|
t.assembly_version = 1.0
|
data/assembly.xml
CHANGED
@@ -6,6 +6,7 @@
|
|
6
6
|
<includeBaseDirectory>false</includeBaseDirectory>
|
7
7
|
<dependencySets>
|
8
8
|
<dependencySet>
|
9
|
+
<useProjectArtifact>false</useProjectArtifact>
|
9
10
|
<includes>
|
10
11
|
<include>org.apache.httpcomponents:httpclient</include>
|
11
12
|
<include>org.apache.httpcomponents:httpcore</include>
|
data/lib/rjack-httpclient-4.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
#--
|
2
|
-
# Copyright (c) 2008-
|
2
|
+
# Copyright (c) 2008-2011 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.
|
19
|
+
HTTPCLIENT_VERSION = '4.1.1'
|
20
20
|
VERSION = HTTPCLIENT_VERSION + '.0'
|
21
21
|
|
22
22
|
HTTPCLIENT_DIR = File.dirname( __FILE__ ) # :nodoc:
|
Binary file
|
Binary file
|
data/pom.xml
CHANGED
@@ -7,12 +7,16 @@
|
|
7
7
|
<version>1.0</version>
|
8
8
|
<name>HTTPClient Assembly for Gem</name>
|
9
9
|
|
10
|
+
<properties>
|
11
|
+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
12
|
+
</properties>
|
13
|
+
|
10
14
|
<dependencies>
|
11
15
|
|
12
16
|
<dependency>
|
13
17
|
<groupId>org.apache.httpcomponents</groupId>
|
14
18
|
<artifactId>httpclient</artifactId>
|
15
|
-
<version>4.
|
19
|
+
<version>4.1.1</version>
|
16
20
|
<exclusions>
|
17
21
|
<exclusion>
|
18
22
|
<groupId>commons-logging</groupId>
|
@@ -41,34 +45,24 @@
|
|
41
45
|
<plugins>
|
42
46
|
<plugin>
|
43
47
|
<artifactId>maven-assembly-plugin</artifactId>
|
48
|
+
<version>2.2.1</version>
|
44
49
|
<configuration>
|
50
|
+
<attach>false</attach>
|
51
|
+
<ignoreDirFormatExtensions>false</ignoreDirFormatExtensions>
|
45
52
|
<descriptors>
|
46
53
|
<descriptor>assembly.xml</descriptor>
|
47
54
|
</descriptors>
|
48
|
-
<tarLongFileMode>gnu</tarLongFileMode>
|
49
55
|
</configuration>
|
50
56
|
<executions>
|
51
57
|
<execution>
|
52
58
|
<id>assembly</id>
|
53
59
|
<phase>package</phase>
|
54
60
|
<goals>
|
55
|
-
<goal>
|
61
|
+
<goal>single</goal>
|
56
62
|
</goals>
|
57
63
|
</execution>
|
58
64
|
</executions>
|
59
65
|
</plugin>
|
60
|
-
<plugin>
|
61
|
-
<artifactId>maven-compiler-plugin</artifactId>
|
62
|
-
<configuration>
|
63
|
-
<source>1.5</source>
|
64
|
-
<target>1.5</target>
|
65
|
-
<optimize>true</optimize>
|
66
|
-
<debug>true</debug>
|
67
|
-
<encoding>UTF-8</encoding>
|
68
|
-
<showDeprecation>true</showDeprecation>
|
69
|
-
<showWarnings>true</showWarnings>
|
70
|
-
</configuration>
|
71
|
-
</plugin>
|
72
66
|
</plugins>
|
73
67
|
</build>
|
74
68
|
|
data/test/test_httpclient.rb
CHANGED
metadata
CHANGED
@@ -1,13 +1,8 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rjack-httpclient-4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
prerelease:
|
5
|
-
|
6
|
-
- 4
|
7
|
-
- 0
|
8
|
-
- 3
|
9
|
-
- 0
|
10
|
-
version: 4.0.3.0
|
4
|
+
prerelease:
|
5
|
+
version: 4.1.1.0
|
11
6
|
platform: java
|
12
7
|
authors:
|
13
8
|
- David Kellum
|
@@ -15,26 +10,20 @@ autorequire:
|
|
15
10
|
bindir: bin
|
16
11
|
cert_chain: []
|
17
12
|
|
18
|
-
date:
|
13
|
+
date: 2011-06-11 00:00:00 -07:00
|
19
14
|
default_executable:
|
20
15
|
dependencies:
|
21
16
|
- !ruby/object:Gem::Dependency
|
22
17
|
name: rjack-slf4j
|
23
18
|
prerelease: false
|
24
19
|
requirement: &id001 !ruby/object:Gem::Requirement
|
20
|
+
none: false
|
25
21
|
requirements:
|
26
22
|
- - ">="
|
27
23
|
- !ruby/object:Gem::Version
|
28
|
-
segments:
|
29
|
-
- 1
|
30
|
-
- 5
|
31
|
-
- 8
|
32
24
|
version: 1.5.8
|
33
25
|
- - <
|
34
26
|
- !ruby/object:Gem::Version
|
35
|
-
segments:
|
36
|
-
- 1
|
37
|
-
- 7
|
38
27
|
version: "1.7"
|
39
28
|
type: :runtime
|
40
29
|
version_requirements: *id001
|
@@ -42,13 +31,10 @@ dependencies:
|
|
42
31
|
name: rjack-commons-codec
|
43
32
|
prerelease: false
|
44
33
|
requirement: &id002 !ruby/object:Gem::Requirement
|
34
|
+
none: false
|
45
35
|
requirements:
|
46
36
|
- - ~>
|
47
37
|
- !ruby/object:Gem::Version
|
48
|
-
segments:
|
49
|
-
- 1
|
50
|
-
- 4
|
51
|
-
- 0
|
52
38
|
version: 1.4.0
|
53
39
|
type: :runtime
|
54
40
|
version_requirements: *id002
|
@@ -56,19 +42,13 @@ dependencies:
|
|
56
42
|
name: rjack-logback
|
57
43
|
prerelease: false
|
58
44
|
requirement: &id003 !ruby/object:Gem::Requirement
|
45
|
+
none: false
|
59
46
|
requirements:
|
60
47
|
- - ">="
|
61
48
|
- !ruby/object:Gem::Version
|
62
|
-
segments:
|
63
|
-
- 0
|
64
|
-
- 9
|
65
|
-
- 18
|
66
49
|
version: 0.9.18
|
67
50
|
- - <
|
68
51
|
- !ruby/object:Gem::Version
|
69
|
-
segments:
|
70
|
-
- 2
|
71
|
-
- 0
|
72
52
|
version: "2.0"
|
73
53
|
type: :development
|
74
54
|
version_requirements: *id003
|
@@ -76,14 +56,11 @@ dependencies:
|
|
76
56
|
name: rjack-tarpit
|
77
57
|
prerelease: false
|
78
58
|
requirement: &id004 !ruby/object:Gem::Requirement
|
59
|
+
none: false
|
79
60
|
requirements:
|
80
61
|
- - ~>
|
81
62
|
- !ruby/object:Gem::Version
|
82
|
-
|
83
|
-
- 1
|
84
|
-
- 2
|
85
|
-
- 3
|
86
|
-
version: 1.2.3
|
63
|
+
version: 1.3.2
|
87
64
|
type: :development
|
88
65
|
version_requirements: *id004
|
89
66
|
description: |-
|
@@ -115,10 +92,10 @@ files:
|
|
115
92
|
- lib/rjack-httpclient-4/base.rb
|
116
93
|
- lib/rjack-httpclient-4.rb
|
117
94
|
- test/test_httpclient.rb
|
118
|
-
- lib/rjack-httpclient-4/httpclient-4.
|
119
|
-
- lib/rjack-httpclient-4/httpcore-4.
|
95
|
+
- lib/rjack-httpclient-4/httpclient-4.1.1.jar
|
96
|
+
- lib/rjack-httpclient-4/httpcore-4.1.jar
|
120
97
|
has_rdoc: true
|
121
|
-
homepage: http://rjack.rubyforge.org
|
98
|
+
homepage: http://rjack.rubyforge.org/httpclient-4
|
122
99
|
licenses: []
|
123
100
|
|
124
101
|
post_install_message:
|
@@ -128,23 +105,21 @@ rdoc_options:
|
|
128
105
|
require_paths:
|
129
106
|
- lib
|
130
107
|
required_ruby_version: !ruby/object:Gem::Requirement
|
108
|
+
none: false
|
131
109
|
requirements:
|
132
110
|
- - ">="
|
133
111
|
- !ruby/object:Gem::Version
|
134
|
-
segments:
|
135
|
-
- 0
|
136
112
|
version: "0"
|
137
113
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
114
|
+
none: false
|
138
115
|
requirements:
|
139
116
|
- - ">="
|
140
117
|
- !ruby/object:Gem::Version
|
141
|
-
segments:
|
142
|
-
- 0
|
143
118
|
version: "0"
|
144
119
|
requirements: []
|
145
120
|
|
146
|
-
rubyforge_project: rjack
|
147
|
-
rubygems_version: 1.
|
121
|
+
rubyforge_project: rjack-httpclient-4
|
122
|
+
rubygems_version: 1.5.1
|
148
123
|
signing_key:
|
149
124
|
specification_version: 3
|
150
125
|
summary: A gem packaging of the {HttpComponents}[http://hc.apache.org/] HTTP Client 4.x for JRuby
|
Binary file
|
Binary file
|