rjack-jackson 2.2.3.0-java → 2.4.2.0-java

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 37d5dd1ca7d87e74d63fd91599dcdd429fea236d
4
- data.tar.gz: fc10c11b4c44b26b479bf76d1eeab607ec1b2ed2
3
+ metadata.gz: 102c28b0d1b66e5a7cdbfd5d17e270458442fe4f
4
+ data.tar.gz: 0ca6fe1641b3ec79ecce51ed32700f34ae823436
5
5
  SHA512:
6
- metadata.gz: ec89cc50eaf614ae574a37604bee85b1ad73a4f8a5d7030dda7333c9433015d1f8997fd47841251cdb6445c158d50ae0c6c54575ae3f0c8331c9c90fdf626821
7
- data.tar.gz: 0438bad0eadcd97bf3ea3756e3455f76efa54a876288b3f1247de60b26866bafa13f145014acad688b6020250a8678bd1199c23c07d08a9dc2a5bf1bb4d2ce62
6
+ metadata.gz: 6b3632fb8e0da33eed8fb5f9a511bf66fa245ab6eedeb700a8a66c1aaf1bbf9eb52f30c37f4c29484d5b4df85d905901b38d8cd89f5b19a4ec3e8dfbbc6aeabb
7
+ data.tar.gz: d6e7c156078c7235a8c86dab632f35f5b05b09e30792e32bfe19374b16cc53a32afd4f4bdd46e7f3a255b1e32dcd45b0dcc9a80996c85cc8a1c2b3bf76222722
@@ -1,3 +1,6 @@
1
+ === 2.4.2.0 (2014-8-19)
2
+ * Update to Jackson 2.4.2
3
+
1
4
  === 2.2.3.0 (2013-10-11)
2
5
  * Update to Jackson 2.2.3
3
6
 
@@ -8,6 +8,6 @@ pom.xml
8
8
  lib/rjack-jackson/base.rb
9
9
  lib/rjack-jackson.rb
10
10
  test/test_jackson.rb
11
- lib/rjack-jackson/jackson-annotations-2.2.3.jar
12
- lib/rjack-jackson/jackson-core-2.2.3.jar
13
- lib/rjack-jackson/jackson-databind-2.2.3.jar
11
+ lib/rjack-jackson/jackson-annotations-2.4.2.jar
12
+ lib/rjack-jackson/jackson-core-2.4.2.jar
13
+ lib/rjack-jackson/jackson-databind-2.4.2.jar
data/NOTICE.txt CHANGED
@@ -1,5 +1,5 @@
1
1
  rjack-jackson gem
2
- Copyright (c) 2011-2013 David Kellum
2
+ Copyright (c) 2011-2014 David Kellum
3
3
 
4
4
  This product includes software developed by:
5
5
 
@@ -1,7 +1,7 @@
1
1
  = rjack-jackson
2
2
 
3
- * http://rjack.rubyforge.org/jackson
4
- * http://rjack.rubyforge.org
3
+ * http://rjack.gravitext.com/jackson
4
+ * http://rjack.gravitext.com
5
5
  * https://github.com/dekellum/rjack
6
6
 
7
7
  == Description
@@ -12,7 +12,7 @@ A gem packaging of {Jackson JSON Processor}[http://wiki.fasterxml.com/JacksonHom
12
12
 
13
13
  === rjack-jackson
14
14
 
15
- Copyright (c) 2011-2013 David Kellum
15
+ Copyright (c) 2011-2014 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
@@ -4,10 +4,11 @@ require 'rubygems'
4
4
  require 'bundler/setup'
5
5
  require 'rjack-tarpit'
6
6
 
7
- RJack::TarPit.new( 'rjack-jackson' ) do |tp|
8
-
9
- tp.rdoc_destinations <<
10
- 'dekellum@rubyforge.org:/var/www/gforge-projects/rjack/jackson'
11
- tp.publish_rdoc_rsync_flags = %w[ -rL ]
7
+ RJack::TarPit.new( 'rjack-jackson' ).define_tasks
12
8
 
9
+ desc "Upload RDOC to Amazon S3 (rdoc.gravitext.com/rjack, Oregon)"
10
+ task :publish_rdoc => [ :clean, :rerdoc ] do
11
+ sh <<-SH
12
+ aws s3 sync --acl public-read doc/ s3://rjack.gravitext.com/jackson/
13
+ SH
13
14
  end
@@ -1,5 +1,5 @@
1
1
  #--
2
- # Copyright (c) 2011-2013 David Kellum
2
+ # Copyright (c) 2011-2014 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-2013 David Kellum
2
+ # Copyright (c) 2011-2014 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 = '2.2.3'
20
+ JACKSON_VERSION = '2.4.2'
21
21
 
22
22
  # rjack gem version
23
23
  VERSION = JACKSON_VERSION + '.0'
data/pom.xml CHANGED
@@ -15,17 +15,17 @@
15
15
  <dependency>
16
16
  <groupId>com.fasterxml.jackson.core</groupId>
17
17
  <artifactId>jackson-core</artifactId>
18
- <version>2.2.3</version>
18
+ <version>2.4.2</version>
19
19
  </dependency>
20
20
  <dependency>
21
21
  <groupId>com.fasterxml.jackson.core</groupId>
22
22
  <artifactId>jackson-databind</artifactId>
23
- <version>2.2.3</version>
23
+ <version>2.4.2</version>
24
24
  </dependency>
25
25
  <dependency>
26
26
  <groupId>com.fasterxml.jackson.core</groupId>
27
27
  <artifactId>jackson-annotations</artifactId>
28
- <version>2.2.3</version>
28
+ <version>2.4.2</version>
29
29
  </dependency>
30
30
  </dependencies>
31
31
 
@@ -2,7 +2,7 @@
2
2
  #.hashdot.profile += jruby-shortlived
3
3
 
4
4
  #--
5
- # Copyright (c) 2011-2013 David Kellum
5
+ # Copyright (c) 2011-2014 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
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: rjack-jackson
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.3.0
4
+ version: 2.4.2.0
5
5
  platform: java
6
6
  authors:
7
7
  - David Kellum
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2013-10-11 00:00:00.000000000 Z
11
+ date: 2014-08-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: minitest
@@ -24,18 +24,32 @@ dependencies:
24
24
  version: 4.7.4
25
25
  prerelease: false
26
26
  type: :development
27
+ - !ruby/object:Gem::Dependency
28
+ name: rdoc
29
+ version_requirements: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - ~>
32
+ - !ruby/object:Gem::Version
33
+ version: 4.0.1
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ~>
37
+ - !ruby/object:Gem::Version
38
+ version: 4.0.1
39
+ prerelease: false
40
+ type: :development
27
41
  - !ruby/object:Gem::Dependency
28
42
  name: rjack-tarpit
29
43
  version_requirements: !ruby/object:Gem::Requirement
30
44
  requirements:
31
45
  - - ~>
32
46
  - !ruby/object:Gem::Version
33
- version: '2.0'
47
+ version: '2.1'
34
48
  requirement: !ruby/object:Gem::Requirement
35
49
  requirements:
36
50
  - - ~>
37
51
  - !ruby/object:Gem::Version
38
- version: '2.0'
52
+ version: '2.1'
39
53
  prerelease: false
40
54
  type: :development
41
55
  description:
@@ -57,10 +71,10 @@ files:
57
71
  - lib/rjack-jackson/base.rb
58
72
  - lib/rjack-jackson.rb
59
73
  - test/test_jackson.rb
60
- - lib/rjack-jackson/jackson-annotations-2.2.3.jar
61
- - lib/rjack-jackson/jackson-core-2.2.3.jar
62
- - lib/rjack-jackson/jackson-databind-2.2.3.jar
63
- homepage: http://rjack.rubyforge.org/jackson
74
+ - lib/rjack-jackson/jackson-annotations-2.4.2.jar
75
+ - lib/rjack-jackson/jackson-core-2.4.2.jar
76
+ - lib/rjack-jackson/jackson-databind-2.4.2.jar
77
+ homepage: http://rjack.gravitext.com/jackson
64
78
  licenses: []
65
79
  metadata: {}
66
80
  post_install_message:
@@ -81,7 +95,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
95
  version: '0'
82
96
  requirements: []
83
97
  rubyforge_project:
84
- rubygems_version: 2.1.5
98
+ rubygems_version: 2.1.9
85
99
  signing_key:
86
100
  specification_version: 4
87
101
  summary: A gem packaging of Jackson JSON Processor.