rjack-httpclient-3 3.1.4-java → 3.1.5-java

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,8 @@
1
+ === 3.1.5 (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
  === 3.1.4 (2010-3-6)
2
7
  * Set gem platform to java
3
8
  * Upgraded to tarpit ~> 1.2.0
@@ -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-3/base.rb
10
9
  lib/rjack-httpclient-3.rb
11
10
  test/test_httpclient.rb
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  rjack-httpclient-3 gem
2
- Copyright (c) 2008-2009 David Kellum
2
+ Copyright (c) 2008-2010 David Kellum
3
3
 
4
4
  This product includes software developed by:
5
5
 
@@ -44,7 +44,7 @@ See {org.apache.commons.HttpClient}[http://hc.apache.org/httpclient-3.x/apidocs/
44
44
 
45
45
  === rjack-httpclient-3 gem
46
46
 
47
- Copyright (c) 2008-2009 David Kellum
47
+ Copyright (c) 2008-2010 David Kellum
48
48
 
49
49
  Licensed under the Apache License, Version 2.0 (the "License"); you
50
50
  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-3/base'
@@ -28,9 +13,9 @@ t = TarPit.new( 'rjack-httpclient-3', HTTPClient3::VERSION, :java_platform )
28
13
 
29
14
  t.specify do |h|
30
15
  h.developer( "David Kellum", "dek-oss@gravitext.com" )
31
- h.extra_deps += [ [ 'rjack-slf4j', '~> 1.5.8' ],
16
+ h.extra_deps += [ [ 'rjack-slf4j', '>= 1.5.8', '< 1.7' ],
32
17
  [ 'rjack-commons-codec', '~> 1.4.0' ] ]
33
- h.extra_dev_deps << [ 'rjack-logback', '>= 0.9.17' ]
18
+ h.extra_dev_deps << [ 'rjack-logback', '>= 0.9.18', '< 2.0' ]
34
19
  h.rubyforge_name = "rjack"
35
20
  h.remote_rdoc_dir = "httpclient-3"
36
21
  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-3/base'
23
21
 
22
+ require 'java'
23
+
24
24
  module RJack
25
25
  module HTTPClient3
26
26
 
@@ -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 HTTPClient3
19
19
  HTTPCLIENT_VERSION = '3.1'
20
- VERSION = HTTPCLIENT_VERSION + '.4'
20
+ VERSION = HTTPCLIENT_VERSION + '.5'
21
21
 
22
22
  HTTPCLIENT_DIR = File.dirname( __FILE__ ) # :nodoc:
23
23
  end
@@ -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,8 @@
16
16
  #++
17
17
 
18
18
  require 'rubygems'
19
- gem( 'rjack-logback', '>= 0.9.17.1' )
20
-
21
19
  require 'rjack-logback'
22
- Logback.config_console( :level => Logback::DEBUG )
20
+ RJack::Logback.config_console( :level => RJack::Logback::DEBUG )
23
21
 
24
22
  require 'test/unit'
25
23
 
metadata CHANGED
@@ -1,7 +1,12 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-httpclient-3
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.1.4
4
+ prerelease: false
5
+ segments:
6
+ - 3
7
+ - 1
8
+ - 5
9
+ version: 3.1.5
5
10
  platform: java
6
11
  authors:
7
12
  - David Kellum
@@ -9,49 +14,77 @@ autorequire:
9
14
  bindir: bin
10
15
  cert_chain: []
11
16
 
12
- date: 2010-03-06 00:00:00 -08:00
17
+ date: 2010-08-31 00:00:00 -07:00
13
18
  default_executable:
14
19
  dependencies:
15
20
  - !ruby/object:Gem::Dependency
16
21
  name: rjack-slf4j
17
- type: :runtime
18
- version_requirement:
19
- version_requirements: !ruby/object:Gem::Requirement
22
+ prerelease: false
23
+ requirement: &id001 !ruby/object:Gem::Requirement
20
24
  requirements:
21
- - - ~>
25
+ - - ">="
22
26
  - !ruby/object:Gem::Version
27
+ segments:
28
+ - 1
29
+ - 5
30
+ - 8
23
31
  version: 1.5.8
24
- version:
32
+ - - <
33
+ - !ruby/object:Gem::Version
34
+ segments:
35
+ - 1
36
+ - 7
37
+ version: "1.7"
38
+ type: :runtime
39
+ version_requirements: *id001
25
40
  - !ruby/object:Gem::Dependency
26
41
  name: rjack-commons-codec
27
- type: :runtime
28
- version_requirement:
29
- version_requirements: !ruby/object:Gem::Requirement
42
+ prerelease: false
43
+ requirement: &id002 !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - ~>
32
46
  - !ruby/object:Gem::Version
47
+ segments:
48
+ - 1
49
+ - 4
50
+ - 0
33
51
  version: 1.4.0
34
- version:
52
+ type: :runtime
53
+ version_requirements: *id002
35
54
  - !ruby/object:Gem::Dependency
36
55
  name: rjack-logback
37
- type: :development
38
- version_requirement:
39
- version_requirements: !ruby/object:Gem::Requirement
56
+ prerelease: false
57
+ requirement: &id003 !ruby/object:Gem::Requirement
40
58
  requirements:
41
59
  - - ">="
42
60
  - !ruby/object:Gem::Version
43
- version: 0.9.17
44
- version:
61
+ segments:
62
+ - 0
63
+ - 9
64
+ - 18
65
+ version: 0.9.18
66
+ - - <
67
+ - !ruby/object:Gem::Version
68
+ segments:
69
+ - 2
70
+ - 0
71
+ version: "2.0"
72
+ type: :development
73
+ version_requirements: *id003
45
74
  - !ruby/object:Gem::Dependency
46
75
  name: rjack-tarpit
47
- type: :development
48
- version_requirement:
49
- version_requirements: !ruby/object:Gem::Requirement
76
+ prerelease: false
77
+ requirement: &id004 !ruby/object:Gem::Requirement
50
78
  requirements:
51
79
  - - ~>
52
80
  - !ruby/object:Gem::Version
53
- version: 1.2.0
54
- version:
81
+ segments:
82
+ - 1
83
+ - 2
84
+ - 2
85
+ version: 1.2.2
86
+ type: :development
87
+ version_requirements: *id004
55
88
  description: |-
56
89
  A gem packaging of
57
90
  {Commons HttpClient 3.x}[http://hc.apache.org/httpclient-3.x] for JRuby.
@@ -68,17 +101,16 @@ extensions: []
68
101
  extra_rdoc_files:
69
102
  - Manifest.txt
70
103
  - NOTICE.txt
71
- - README.rdoc
72
104
  - History.rdoc
73
- files:
74
- - Manifest.static
75
- - Manifest.txt
76
105
  - README.rdoc
106
+ files:
77
107
  - History.rdoc
108
+ - Manifest.txt
78
109
  - NOTICE.txt
110
+ - README.rdoc
79
111
  - Rakefile
80
- - pom.xml
81
112
  - assembly.xml
113
+ - pom.xml
82
114
  - lib/rjack-httpclient-3/base.rb
83
115
  - lib/rjack-httpclient-3.rb
84
116
  - test/test_httpclient.rb
@@ -97,18 +129,20 @@ required_ruby_version: !ruby/object:Gem::Requirement
97
129
  requirements:
98
130
  - - ">="
99
131
  - !ruby/object:Gem::Version
132
+ segments:
133
+ - 0
100
134
  version: "0"
101
- version:
102
135
  required_rubygems_version: !ruby/object:Gem::Requirement
103
136
  requirements:
104
137
  - - ">="
105
138
  - !ruby/object:Gem::Version
139
+ segments:
140
+ - 0
106
141
  version: "0"
107
- version:
108
142
  requirements: []
109
143
 
110
144
  rubyforge_project: rjack
111
- rubygems_version: 1.3.5
145
+ rubygems_version: 1.3.6
112
146
  signing_key:
113
147
  specification_version: 3
114
148
  summary: A gem packaging of {Commons HttpClient 3.x}[http://hc.apache.org/httpclient-3.x] for JRuby
@@ -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-3/base.rb
10
- lib/rjack-httpclient-3.rb
11
- test/test_httpclient.rb