rjack-jackson 1.8.5.0-java → 1.8.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,3 +1,7 @@
1
+ === 1.8.6.0 (2012-1-15)
2
+ * Update to Jackson 1.8.6
3
+ * Update to tarpit ~> 2.0 (build)
4
+
1
5
  === 1.8.5.0 (2011-8-29)
2
6
  * Update to Jackson 1.8.5
3
7
 
data/Manifest.txt ADDED
@@ -0,0 +1,16 @@
1
+ History.rdoc
2
+ Manifest.txt
3
+ NOTICE.txt
4
+ README.rdoc
5
+ Rakefile
6
+ assembly.xml
7
+ pom.xml
8
+ lib/rjack-jackson/base.rb
9
+ lib/rjack-jackson.rb
10
+ lib/rjack-jackson/jaxrs.rb
11
+ lib/rjack-jackson/xc.rb
12
+ test/test_jackson.rb
13
+ lib/rjack-jackson/jackson-core-asl-1.8.6.jar
14
+ lib/rjack-jackson/jackson-jaxrs-1.8.6.jar
15
+ lib/rjack-jackson/jackson-mapper-asl-1.8.6.jar
16
+ lib/rjack-jackson/jackson-xc-1.8.6.jar
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  rjack-jackson gem
2
- Copyright (c) 2011 David Kellum
2
+ Copyright (c) 2011-2012 David Kellum
3
3
 
4
4
  This product includes software developed by:
5
5
 
data/README.rdoc CHANGED
@@ -12,7 +12,7 @@ A gem packaging of {Jackson JSON Processor}[http://jackson.codehaus.org/].
12
12
 
13
13
  === rjack-jackson
14
14
 
15
- Copyright (c) 2011 David Kellum
15
+ Copyright (c) 2011-2012 David Kellum
16
16
 
17
17
  Licensed under the Apache License, Version 2.0 (the "License"); you
18
18
  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-jackson/base'
5
-
6
3
  require 'rubygems'
7
- gem 'rjack-tarpit', '~> 1.3.0'
4
+ require 'bundler/setup'
8
5
  require 'rjack-tarpit'
9
6
 
10
- include RJack
11
-
12
- t = TarPit.new( 'rjack-jackson', Jackson::VERSION, :java_platform )
13
-
14
- t.specify do |h|
15
- h.developer( "David Kellum", "dek-oss@gravitext.com" )
16
- h.rdoc_locations << "dekellum@rubyforge.org:/var/www/gforge-projects/rjack/jackson"
17
- end
18
-
19
- modules = %w[ core-asl mapper-asl jaxrs xc ]
20
-
21
- t.jars = modules.map { |m| "jackson-#{m}-#{ Jackson::JACKSON_VERSION }.jar" }
7
+ RJack::TarPit.new( 'rjack-jackson' ) do |tp|
22
8
 
23
- t.assembly_version = 1.0
9
+ tp.rdoc_destinations <<
10
+ 'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/jackson'
24
11
 
25
- file 'Manifest.txt' => [ "lib/#{t.name}/base.rb" ]
26
-
27
- task :check_pom_deps do
28
- t.test_line_match( 'pom.xml',
29
- %r[<version>#{ Jackson::JACKSON_VERSION }</version>] )
30
- end
31
-
32
- task :check_history_version do
33
- t.test_line_match( 'History.rdoc', /^==/, / #{t.version} / )
34
12
  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
@@ -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
@@ -17,7 +17,7 @@
17
17
  module RJack
18
18
  module Jackson
19
19
 
20
- JACKSON_VERSION = '1.8.5'
20
+ JACKSON_VERSION = '1.8.6'
21
21
 
22
22
  # rjack gem version
23
23
  VERSION = JACKSON_VERSION + '.0'
@@ -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
@@ -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
data/lib/rjack-jackson.rb CHANGED
@@ -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
data/pom.xml CHANGED
@@ -15,22 +15,22 @@
15
15
  <dependency>
16
16
  <groupId>org.codehaus.jackson</groupId>
17
17
  <artifactId>jackson-core-asl</artifactId>
18
- <version>1.8.5</version>
18
+ <version>1.8.6</version>
19
19
  </dependency>
20
20
  <dependency>
21
21
  <groupId>org.codehaus.jackson</groupId>
22
22
  <artifactId>jackson-mapper-asl</artifactId>
23
- <version>1.8.5</version>
23
+ <version>1.8.6</version>
24
24
  </dependency>
25
25
  <dependency>
26
26
  <groupId>org.codehaus.jackson</groupId>
27
27
  <artifactId>jackson-jaxrs</artifactId>
28
- <version>1.8.5</version>
28
+ <version>1.8.6</version>
29
29
  </dependency>
30
30
  <dependency>
31
31
  <groupId>org.codehaus.jackson</groupId>
32
32
  <artifactId>jackson-xc</artifactId>
33
- <version>1.8.5</version>
33
+ <version>1.8.6</version>
34
34
  </dependency>
35
35
  </dependencies>
36
36
 
data/test/test_jackson.rb CHANGED
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011 David Kellum
5
+ # Copyright (c) 2011-2012 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
@@ -17,16 +17,18 @@
17
17
  # permissions and limitations under the License.
18
18
  #++
19
19
 
20
- $LOAD_PATH.unshift File.join( File.dirname(__FILE__), "..", "lib" )
20
+ require 'rubygems'
21
+ require 'bundler/setup'
22
+
23
+ require 'minitest/unit'
24
+ require 'minitest/autorun'
21
25
 
22
26
  require 'rjack-jackson'
23
27
 
24
28
  require 'rjack-jackson/jaxrs'
25
29
  require 'rjack-jackson/xc'
26
30
 
27
- require 'test/unit'
28
-
29
- class TestJackson < Test::Unit::TestCase
31
+ class TestJackson < MiniTest::Unit::TestCase
30
32
  include RJack
31
33
 
32
34
  import 'org.codehaus.jackson.JsonParser'
@@ -35,7 +37,6 @@ class TestJackson < Test::Unit::TestCase
35
37
  import 'org.codehaus.jackson.xc.DataHandlerJsonDeserializer' #xc
36
38
 
37
39
  def test_load
38
-
39
- assert true
40
+ pass
40
41
  end
41
42
  end
metadata CHANGED
@@ -2,7 +2,7 @@
2
2
  name: rjack-jackson
3
3
  version: !ruby/object:Gem::Version
4
4
  prerelease:
5
- version: 1.8.5.0
5
+ version: 1.8.6.0
6
6
  platform: java
7
7
  authors:
8
8
  - David Kellum
@@ -10,20 +10,31 @@ autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
12
 
13
- date: 2011-08-30 00:00:00 Z
13
+ date: 2012-01-16 00:00:00 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
- name: rjack-tarpit
16
+ name: minitest
17
+ version_requirements: &id001 !ruby/object:Gem::Requirement
18
+ none: false
19
+ requirements:
20
+ - - ~>
21
+ - !ruby/object:Gem::Version
22
+ version: "2.2"
23
+ requirement: *id001
17
24
  prerelease: false
18
- requirement: &id001 !ruby/object:Gem::Requirement
25
+ type: :development
26
+ - !ruby/object:Gem::Dependency
27
+ name: rjack-tarpit
28
+ version_requirements: &id002 !ruby/object:Gem::Requirement
19
29
  none: false
20
30
  requirements:
21
31
  - - ~>
22
32
  - !ruby/object:Gem::Version
23
- version: 1.3.3
33
+ version: "2.0"
34
+ requirement: *id002
35
+ prerelease: false
24
36
  type: :development
25
- version_requirements: *id001
26
- description: A gem packaging of {Jackson JSON Processor}[http://jackson.codehaus.org/].
37
+ description:
27
38
  email:
28
39
  - dek-oss@gravitext.com
29
40
  executables: []
@@ -31,11 +42,11 @@ executables: []
31
42
  extensions: []
32
43
 
33
44
  extra_rdoc_files:
34
- - NOTICE.txt
35
45
  - History.rdoc
36
46
  - README.rdoc
37
47
  files:
38
48
  - History.rdoc
49
+ - Manifest.txt
39
50
  - NOTICE.txt
40
51
  - README.rdoc
41
52
  - Rakefile
@@ -46,10 +57,10 @@ files:
46
57
  - lib/rjack-jackson/jaxrs.rb
47
58
  - lib/rjack-jackson/xc.rb
48
59
  - test/test_jackson.rb
49
- - lib/rjack-jackson/jackson-core-asl-1.8.5.jar
50
- - lib/rjack-jackson/jackson-jaxrs-1.8.5.jar
51
- - lib/rjack-jackson/jackson-mapper-asl-1.8.5.jar
52
- - lib/rjack-jackson/jackson-xc-1.8.5.jar
60
+ - lib/rjack-jackson/jackson-core-asl-1.8.6.jar
61
+ - lib/rjack-jackson/jackson-jaxrs-1.8.6.jar
62
+ - lib/rjack-jackson/jackson-mapper-asl-1.8.6.jar
63
+ - lib/rjack-jackson/jackson-xc-1.8.6.jar
53
64
  homepage: http://rjack.rubyforge.org/jackson
54
65
  licenses: []
55
66
 
@@ -64,19 +75,25 @@ required_ruby_version: !ruby/object:Gem::Requirement
64
75
  requirements:
65
76
  - - ">="
66
77
  - !ruby/object:Gem::Version
78
+ hash: 2
79
+ segments:
80
+ - 0
67
81
  version: "0"
68
82
  required_rubygems_version: !ruby/object:Gem::Requirement
69
83
  none: false
70
84
  requirements:
71
85
  - - ">="
72
86
  - !ruby/object:Gem::Version
87
+ hash: 2
88
+ segments:
89
+ - 0
73
90
  version: "0"
74
91
  requirements: []
75
92
 
76
- rubyforge_project: rjack-jackson
77
- rubygems_version: 1.8.9
93
+ rubyforge_project:
94
+ rubygems_version: 1.8.11
78
95
  signing_key:
79
96
  specification_version: 3
80
- summary: A gem packaging of {Jackson JSON Processor}[http://jackson.codehaus.org/].
81
- test_files:
82
- - test/test_jackson.rb
97
+ summary: A gem packaging of Jackson JSON Processor.
98
+ test_files: []
99
+
Binary file