rjack-httpclient-4 4.0.1.1-java → 4.0.1.2-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 CHANGED
@@ -1,3 +1,8 @@
1
+ === 4.0.1.2 (2010-8-31)
2
+ * Remove require 'rubygems' from lib, require 'java' for imports.
3
+ * Expand slf4j/logback gem deps for compatibility with
4
+ slf4j-1.6.x/logback-1.x
5
+
1
6
  === 4.0.1.1 (2010-3-6)
2
7
  * Set gem platform to java
3
8
  * Upgraded to tarpit ~> 1.2.0
data/Manifest.txt CHANGED
@@ -1,11 +1,10 @@
1
- Manifest.static
2
- Manifest.txt
3
- README.rdoc
4
1
  History.rdoc
2
+ Manifest.txt
5
3
  NOTICE.txt
4
+ README.rdoc
6
5
  Rakefile
7
- pom.xml
8
6
  assembly.xml
7
+ pom.xml
9
8
  lib/rjack-httpclient-4/base.rb
10
9
  lib/rjack-httpclient-4.rb
11
10
  test/test_httpclient.rb
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  rjack-httpclient-4 gem
2
- Copyright (c) 2009 David Kellum
2
+ Copyright (c) 2008-2010 David Kellum
3
3
 
4
4
  This product includes software developed by:
5
5
 
data/README.rdoc CHANGED
@@ -48,7 +48,7 @@ See {org.apache.http.client.HttpClient}[http://hc.apache.org/httpcomponents-clie
48
48
 
49
49
  === rjack-httpclient-4 gem
50
50
 
51
- Copyright (c) 2008-2009 David Kellum
51
+ Copyright (c) 2008-2010 David Kellum
52
52
 
53
53
  Licensed under the Apache License, Version 2.0 (the "License"); you
54
54
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -1,19 +1,4 @@
1
1
  # -*- ruby -*-
2
- #--
3
- # Copyright (C) 2008-2009 David Kellum
4
- #
5
- # Licensed under the Apache License, Version 2.0 (the "License"); you
6
- # may not use this file except in compliance with the License. You
7
- # may obtain a copy of the License at
8
- #
9
- # http://www.apache.org/licenses/LICENSE-2.0
10
- #
11
- # Unless required by applicable law or agreed to in writing, software
12
- # distributed under the License is distributed on an "AS IS" BASIS,
13
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
14
- # implied. See the License for the specific language governing
15
- # permissions and limitations under the License.
16
- #++
17
2
 
18
3
  $LOAD_PATH << './lib'
19
4
  require 'rjack-httpclient-4/base'
@@ -30,9 +15,9 @@ t = TarPit.new( 'rjack-httpclient-4',
30
15
 
31
16
  t.specify do |h|
32
17
  h.developer( "David Kellum", "dek-oss@gravitext.com" )
33
- h.extra_deps += [ [ 'rjack-slf4j', '~> 1.5.8' ],
18
+ h.extra_deps += [ [ 'rjack-slf4j', '>= 1.5.8', '< 1.7' ],
34
19
  [ 'rjack-commons-codec', '~> 1.4.0' ] ]
35
- h.extra_dev_deps << [ 'rjack-logback', '>= 0.9.17' ]
20
+ h.extra_dev_deps << [ 'rjack-logback', '>= 0.9.18', '< 2.0' ]
36
21
  h.rubyforge_name = "rjack"
37
22
  h.remote_rdoc_dir = "httpclient-4"
38
23
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (C) 2008-2009 David Kellum
2
+ # Copyright (c) 2008-2010 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
@@ -17,7 +17,7 @@
17
17
  module RJack
18
18
  module HTTPClient4
19
19
  HTTPCLIENT_VERSION = '4.0.1'
20
- VERSION = HTTPCLIENT_VERSION + '.1'
20
+ VERSION = HTTPCLIENT_VERSION + '.2'
21
21
 
22
22
  HTTPCLIENT_DIR = File.dirname( __FILE__ ) # :nodoc:
23
23
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (C) 2008-2009 David Kellum
2
+ # Copyright (c) 2008-2010 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
@@ -14,13 +14,13 @@
14
14
  # permissions and limitations under the License.
15
15
  #++
16
16
 
17
- require 'rubygems'
18
-
19
17
  require 'rjack-slf4j'
20
18
  require 'rjack-slf4j/jcl-over-slf4j'
21
19
  require 'rjack-commons-codec'
22
20
  require 'rjack-httpclient-4/base'
23
21
 
22
+ require 'java'
23
+
24
24
  module RJack
25
25
  module HTTPClient4
26
26
 
@@ -1,6 +1,6 @@
1
1
  #!/usr/bin/env jruby
2
2
  #--
3
- # Copyright (C) 2008-2009 David Kellum
3
+ # Copyright (c) 2008-2010 David Kellum
4
4
  #
5
5
  # Licensed under the Apache License, Version 2.0 (the "License"); you
6
6
  # may not use this file except in compliance with the License. You
@@ -16,10 +16,9 @@
16
16
  #++
17
17
 
18
18
  require 'rubygems'
19
- gem( 'rjack-logback', '>= 0.9.17.1' )
20
19
 
21
20
  require 'rjack-logback'
22
- Logback.config_console( :level => Logback::DEBUG )
21
+ RJack::Logback.config_console( :level => RJack::Logback::DEBUG )
23
22
 
24
23
  require 'test/unit'
25
24
 
metadata CHANGED
@@ -1,7 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-httpclient-4
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.0.1.1
4
+ prerelease: false
5
+ segments:
6
+ - 4
7
+ - 0
8
+ - 1
9
+ - 2
10
+ version: 4.0.1.2
5
11
  platform: java
6
12
  authors:
7
13
  - David Kellum
@@ -9,49 +15,77 @@ autorequire:
9
15
  bindir: bin
10
16
  cert_chain: []
11
17
 
12
- date: 2010-03-06 00:00:00 -08:00
18
+ date: 2010-08-31 00:00:00 -07:00
13
19
  default_executable:
14
20
  dependencies:
15
21
  - !ruby/object:Gem::Dependency
16
22
  name: rjack-slf4j
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
23
+ prerelease: false
24
+ requirement: &id001 !ruby/object:Gem::Requirement
20
25
  requirements:
21
- - - ~>
26
+ - - ">="
22
27
  - !ruby/object:Gem::Version
28
+ segments:
29
+ - 1
30
+ - 5
31
+ - 8
23
32
  version: 1.5.8
24
- version:
33
+ - - <
34
+ - !ruby/object:Gem::Version
35
+ segments:
36
+ - 1
37
+ - 7
38
+ version: "1.7"
39
+ type: :runtime
40
+ version_requirements: *id001
25
41
  - !ruby/object:Gem::Dependency
26
42
  name: rjack-commons-codec
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
43
+ prerelease: false
44
+ requirement: &id002 !ruby/object:Gem::Requirement
30
45
  requirements:
31
46
  - - ~>
32
47
  - !ruby/object:Gem::Version
48
+ segments:
49
+ - 1
50
+ - 4
51
+ - 0
33
52
  version: 1.4.0
34
- version:
53
+ type: :runtime
54
+ version_requirements: *id002
35
55
  - !ruby/object:Gem::Dependency
36
56
  name: rjack-logback
37
- type: :development
38
- version_requirement:
39
- version_requirements: !ruby/object:Gem::Requirement
57
+ prerelease: false
58
+ requirement: &id003 !ruby/object:Gem::Requirement
40
59
  requirements:
41
60
  - - ">="
42
61
  - !ruby/object:Gem::Version
43
- version: 0.9.17
44
- version:
62
+ segments:
63
+ - 0
64
+ - 9
65
+ - 18
66
+ version: 0.9.18
67
+ - - <
68
+ - !ruby/object:Gem::Version
69
+ segments:
70
+ - 2
71
+ - 0
72
+ version: "2.0"
73
+ type: :development
74
+ version_requirements: *id003
45
75
  - !ruby/object:Gem::Dependency
46
76
  name: rjack-tarpit
47
- type: :development
48
- version_requirement:
49
- version_requirements: !ruby/object:Gem::Requirement
77
+ prerelease: false
78
+ requirement: &id004 !ruby/object:Gem::Requirement
50
79
  requirements:
51
80
  - - ~>
52
81
  - !ruby/object:Gem::Version
53
- version: 1.2.0
54
- version:
82
+ segments:
83
+ - 1
84
+ - 2
85
+ - 2
86
+ version: 1.2.2
87
+ type: :development
88
+ version_requirements: *id004
55
89
  description: |-
56
90
  A gem packaging of the {HttpComponents}[http://hc.apache.org/] HTTP
57
91
  Client 4.x for JRuby.
@@ -68,17 +102,16 @@ extensions: []
68
102
  extra_rdoc_files:
69
103
  - Manifest.txt
70
104
  - NOTICE.txt
71
- - README.rdoc
72
105
  - History.rdoc
73
- files:
74
- - Manifest.static
75
- - Manifest.txt
76
106
  - README.rdoc
107
+ files:
77
108
  - History.rdoc
109
+ - Manifest.txt
78
110
  - NOTICE.txt
111
+ - README.rdoc
79
112
  - Rakefile
80
- - pom.xml
81
113
  - assembly.xml
114
+ - pom.xml
82
115
  - lib/rjack-httpclient-4/base.rb
83
116
  - lib/rjack-httpclient-4.rb
84
117
  - test/test_httpclient.rb
@@ -98,18 +131,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
98
131
  requirements:
99
132
  - - ">="
100
133
  - !ruby/object:Gem::Version
134
+ segments:
135
+ - 0
101
136
  version: "0"
102
- version:
103
137
  required_rubygems_version: !ruby/object:Gem::Requirement
104
138
  requirements:
105
139
  - - ">="
106
140
  - !ruby/object:Gem::Version
141
+ segments:
142
+ - 0
107
143
  version: "0"
108
- version:
109
144
  requirements: []
110
145
 
111
146
  rubyforge_project: rjack
112
- rubygems_version: 1.3.5
147
+ rubygems_version: 1.3.6
113
148
  signing_key:
114
149
  specification_version: 3
115
150
  summary: A gem packaging of the {HttpComponents}[http://hc.apache.org/] HTTP Client 4.x for JRuby
data/Manifest.static DELETED
@@ -1,11 +0,0 @@
1
- Manifest.static
2
- Manifest.txt
3
- README.rdoc
4
- History.rdoc
5
- NOTICE.txt
6
- Rakefile
7
- pom.xml
8
- assembly.xml
9
- lib/rjack-httpclient-4/base.rb
10
- lib/rjack-httpclient-4.rb
11
- test/test_httpclient.rb