rjack-async-httpclient 1.6.5.0-java → 1.7.6.0-java

Sign up to get free protection for your applications and to get access to all the features.
data/History.rdoc CHANGED
@@ -1,2 +1,7 @@
1
+ === 1.7.6.0 (2012-9-15)
2
+ * Upgrade to Async Http Client 1.7.6
3
+ * Upgrade/broaden to slf4j [1.6.5,1.8), logback ~> 1.2 (dev)
4
+ * Upgrade to tarpit ~> 2.0 (dev)
5
+
1
6
  === 1.6.5.0 (2011-10-1)
2
7
  * Initial release based on Async Http Client 1.6.5
data/Manifest.txt CHANGED
@@ -7,5 +7,5 @@ pom.xml
7
7
  lib/rjack-async-httpclient/base.rb
8
8
  lib/rjack-async-httpclient.rb
9
9
  test/test_httpclient.rb
10
- lib/rjack-async-httpclient/async-http-client-1.6.5.jar
11
- lib/rjack-async-httpclient/netty-3.2.5.Final.jar
10
+ lib/rjack-async-httpclient/async-http-client-1.7.6.jar
11
+ lib/rjack-async-httpclient/netty-3.4.4.Final.jar
data/README.rdoc CHANGED
@@ -28,7 +28,7 @@ for JRuby.
28
28
 
29
29
  === rjack-async-httpclient gem
30
30
 
31
- Copyright (c) 2011 David Kellum
31
+ Copyright (c) 2011-2012 David Kellum
32
32
 
33
33
  Licensed under the Apache License, Version 2.0 (the "License"); you
34
34
  may not use this file except in compliance with the License. You
data/Rakefile CHANGED
@@ -1,43 +1,12 @@
1
1
  # -*- ruby -*-
2
2
 
3
- $LOAD_PATH << './lib'
4
- require 'rjack-async-httpclient/base'
5
-
6
3
  require 'rubygems'
7
- gem 'rjack-tarpit', '~> 1.4'
4
+ require 'bundler/setup'
8
5
  require 'rjack-tarpit'
9
6
 
10
- include RJack
11
-
12
- t = TarPit.new( 'rjack-async-httpclient',
13
- AsyncHTTPClient::VERSION,
14
- :jars_from_assembly, :java_platform )
15
-
16
- t.specify do |h|
17
- h.developer( "David Kellum", "dek-oss@gravitext.com" )
18
- h.extra_deps += [ [ 'rjack-slf4j', '~> 1.6.1' ] ]
19
-
20
- h.testlib = :minitest
21
- h.extra_dev_deps += [ [ 'rjack-logback', '~> 1.0' ],
22
- [ 'minitest', '~> 2.3' ] ]
23
- h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/async-httpclient"
24
- end
7
+ RJack::TarPit.new( 'rjack-async-httpclient' ) do |tp|
25
8
 
26
- t.assembly_version = 1.0
9
+ tp.rdoc_destinations <<
10
+ 'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/async-httpclient'
27
11
 
28
- task :check_pom_deps do
29
- t.test_line_match( 'pom.xml',
30
- %r[<version>#{ AsyncHTTPClient::CLIENT_VERSION }</version>] )
31
12
  end
32
- task :check_history_version do
33
- t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
34
- end
35
- task :check_history_date do
36
- t.test_line_match( 'History.rdoc', /^==/, /\([0-9\-]+\)$/ )
37
- end
38
-
39
- task :gem => [ :check_pom_deps, :check_history_version ]
40
- task :tag => [ :check_pom_deps, :check_history_version, :check_history_date ]
41
- task :push => [ :check_history_date ]
42
-
43
- t.define_tasks
data/assembly.xml CHANGED
@@ -9,7 +9,7 @@
9
9
  <useProjectArtifact>false</useProjectArtifact>
10
10
  <includes>
11
11
  <include>com.ning:async-http-client</include>
12
- <include>org.jboss.netty:netty</include>
12
+ <include>io.netty:netty</include>
13
13
  </includes>
14
14
  </dependencySet>
15
15
  </dependencySets>
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011 David Kellum
2
+ # Copyright (c) 2011-2012 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 may
@@ -16,7 +16,7 @@
16
16
 
17
17
  module RJack
18
18
  module AsyncHTTPClient
19
- CLIENT_VERSION = '1.6.5'
19
+ CLIENT_VERSION = '1.7.6'
20
20
  VERSION = CLIENT_VERSION + '.0'
21
21
 
22
22
  CLIENT_DIR = File.dirname( __FILE__ ) # :nodoc:
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011 David Kellum
2
+ # Copyright (c) 2011-2012 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 may
data/pom.xml CHANGED
@@ -15,7 +15,7 @@
15
15
  <dependency>
16
16
  <groupId>com.ning</groupId>
17
17
  <artifactId>async-http-client</artifactId>
18
- <version>1.6.5</version>
18
+ <version>1.7.6</version>
19
19
  </dependency>
20
20
  </dependencies>
21
21
 
@@ -1,6 +1,8 @@
1
1
  #!/usr/bin/env jruby
2
+ #.hashdot.profile += jruby-shortlived
3
+
2
4
  #--
3
- # Copyright (c) 2011 David Kellum
5
+ # Copyright (c) 2011-2012 David Kellum
4
6
  #
5
7
  # Licensed under the Apache License, Version 2.0 (the "License"); you
6
8
  # may not use this file except in compliance with the License. You may
@@ -16,6 +18,7 @@
16
18
  #++
17
19
 
18
20
  require 'rubygems'
21
+ require 'bundler/setup'
19
22
 
20
23
  require 'rjack-logback'
21
24
 
@@ -27,8 +30,6 @@ end
27
30
  require 'minitest/unit'
28
31
  require 'minitest/autorun'
29
32
 
30
- $LOAD_PATH.unshift File.join( File.dirname(__FILE__), "..", "lib" )
31
-
32
33
  require 'rjack-async-httpclient'
33
34
 
34
35
  class TestClient < MiniTest::Unit::TestCase
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rjack-async-httpclient
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.6.5.0
5
+ version: 1.7.6.0
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
@@ -10,59 +10,56 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-10-01 00:00:00 Z
13
+ date: 2012-09-15 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: rjack-slf4j
17
- prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
17
+ version_requirements: &id001 !ruby/object:Gem::Requirement
19
18
  none: false
20
19
  requirements:
21
- - - ~>
20
+ - - ">="
22
21
  - !ruby/object:Gem::Version
23
- version: 1.6.1
22
+ version: 1.6.5
23
+ - - <
24
+ - !ruby/object:Gem::Version
25
+ version: "1.8"
26
+ requirement: *id001
27
+ prerelease: false
24
28
  type: :runtime
25
- version_requirements: *id001
26
29
  - !ruby/object:Gem::Dependency
27
30
  name: rjack-logback
28
- prerelease: false
29
- requirement: &id002 !ruby/object:Gem::Requirement
31
+ version_requirements: &id002 !ruby/object:Gem::Requirement
30
32
  none: false
31
33
  requirements:
32
34
  - - ~>
33
35
  - !ruby/object:Gem::Version
34
- version: "1.0"
36
+ version: "1.2"
37
+ requirement: *id002
38
+ prerelease: false
35
39
  type: :development
36
- version_requirements: *id002
37
40
  - !ruby/object:Gem::Dependency
38
41
  name: minitest
39
- prerelease: false
40
- requirement: &id003 !ruby/object:Gem::Requirement
42
+ version_requirements: &id003 !ruby/object:Gem::Requirement
41
43
  none: false
42
44
  requirements:
43
45
  - - ~>
44
46
  - !ruby/object:Gem::Version
45
47
  version: "2.3"
48
+ requirement: *id003
49
+ prerelease: false
46
50
  type: :development
47
- version_requirements: *id003
48
51
  - !ruby/object:Gem::Dependency
49
52
  name: rjack-tarpit
50
- prerelease: false
51
- requirement: &id004 !ruby/object:Gem::Requirement
53
+ version_requirements: &id004 !ruby/object:Gem::Requirement
52
54
  none: false
53
55
  requirements:
54
56
  - - ~>
55
57
  - !ruby/object:Gem::Version
56
- version: 1.4.0
58
+ version: "2.0"
59
+ requirement: *id004
60
+ prerelease: false
57
61
  type: :development
58
- version_requirements: *id004
59
- description: |-
60
- A gem packaging of the
61
- {Async Http Client}[http://groups.google.com/group/asynchttpclient]
62
- for JRuby.
63
-
64
- * Provides async-http-client and netty jars.
65
- * Provides simple adaption for jruby based configuration.
62
+ description:
66
63
  email:
67
64
  - dek-oss@gravitext.com
68
65
  executables: []
@@ -70,7 +67,6 @@ executables: []
70
67
  extensions: []
71
68
 
72
69
  extra_rdoc_files:
73
- - Manifest.txt
74
70
  - History.rdoc
75
71
  - README.rdoc
76
72
  files:
@@ -83,9 +79,8 @@ files:
83
79
  - lib/rjack-async-httpclient/base.rb
84
80
  - lib/rjack-async-httpclient.rb
85
81
  - test/test_httpclient.rb
86
- - lib/rjack-async-httpclient/async-http-client-1.6.5.jar
87
- - lib/rjack-async-httpclient/netty-3.2.5.Final.jar
88
- - .gemtest
82
+ - lib/rjack-async-httpclient/async-http-client-1.7.6.jar
83
+ - lib/rjack-async-httpclient/netty-3.4.4.Final.jar
89
84
  homepage: http://rjack.rubyforge.org
90
85
  licenses: []
91
86
 
@@ -100,19 +95,25 @@ required_ruby_version: !ruby/object:Gem::Requirement
100
95
  requirements:
101
96
  - - ">="
102
97
  - !ruby/object:Gem::Version
98
+ hash: 2
99
+ segments:
100
+ - 0
103
101
  version: "0"
104
102
  required_rubygems_version: !ruby/object:Gem::Requirement
105
103
  none: false
106
104
  requirements:
107
105
  - - ">="
108
106
  - !ruby/object:Gem::Version
107
+ hash: 2
108
+ segments:
109
+ - 0
109
110
  version: "0"
110
111
  requirements: []
111
112
 
112
- rubyforge_project: rjack-async-httpclient
113
- rubygems_version: 1.8.10
113
+ rubyforge_project:
114
+ rubygems_version: 1.8.15
114
115
  signing_key:
115
116
  specification_version: 3
116
- summary: A gem packaging of the {Async Http Client}[http://groups.google.com/group/asynchttpclient] for JRuby
117
- test_files:
118
- - test/test_httpclient.rb
117
+ summary: A gem packaging of the Async Http Client for JRuby.
118
+ test_files: []
119
+
data/.gemtest DELETED
File without changes