jrjackson 0.4.4-java → 0.4.5-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.
- checksums.yaml +4 -4
- data/.gitignore +5 -0
- data/jrjackson.gemspec +0 -1
- data/lib/jrjackson/build_info.rb +25 -5
- data/lib/jrjackson_jars.rb +8 -8
- data/pom.xml +7 -7
- metadata +11 -15
- data/lib/com/fasterxml/jackson/core/jackson-annotations/2.7.3/jackson-annotations-2.7.3.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-annotations/2.9.1/jackson-annotations-2.9.1.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-core/2.7.3/jackson-core-2.7.3.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-core/2.9.1/jackson-core-2.9.1.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-databind/2.7.3/jackson-databind-2.7.3.jar +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-databind/2.9.1/jackson-databind-2.9.1.jar +0 -0
- data/lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.7.3/jackson-module-afterburner-2.7.3.jar +0 -0
- data/lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.9.1/jackson-module-afterburner-2.9.1.jar +0 -0
- data/lib/jrjackson/jars/jrjackson-1.2.22.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 738b1c5f34d34931329b9f8da0cbe85d1da565e558b4b8595f8fba69070b7726
|
|
4
|
+
data.tar.gz: '0648ec69d943089dfbe0aaac7a67562fa9a47611220ae50375c565dc8fb6d210'
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c08d02eba8321049be24a2b8d0a91d97658f537abe470b5ccffad0ad908aff89abb61838f5a5093f3cab2486e9ec3b1c02a8c58dd4db05cd4bde0558583aec37
|
|
7
|
+
data.tar.gz: 930484d28b099bc96f871ace683372e44dea5c6ea72dfa98d8716d281275877ed02bfacb448dabfc8cc83ba95a9c5aa1a85053c32164ab31c72b9fa72e6c1a14
|
data/.gitignore
CHANGED
data/jrjackson.gemspec
CHANGED
data/lib/jrjackson/build_info.rb
CHANGED
|
@@ -1,23 +1,43 @@
|
|
|
1
1
|
module JrJackson
|
|
2
2
|
module BuildInfo
|
|
3
3
|
def self.version
|
|
4
|
-
'0.4.
|
|
4
|
+
'0.4.5'
|
|
5
5
|
end
|
|
6
6
|
|
|
7
7
|
def self.release_date
|
|
8
|
-
'
|
|
8
|
+
'2018-02-17'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def self.files
|
|
12
|
-
|
|
12
|
+
git_files.concat(generated_jar_files).concat(generated_files)
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
def self.jackson_version
|
|
16
|
-
'2.9.
|
|
16
|
+
'2.9.4'
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
def self.jar_version
|
|
20
|
-
'1.2.
|
|
20
|
+
'1.2.23'
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
private
|
|
24
|
+
|
|
25
|
+
def self.generated_files
|
|
26
|
+
Dir.glob( %w(pom.xml lib/jrjackson_jars.rb) )
|
|
27
|
+
end
|
|
28
|
+
|
|
29
|
+
def self.git_files
|
|
30
|
+
`git ls-files`.split($/).reject{|s| s.start_with?("benchmarking")}
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
def self.generated_jar_files
|
|
34
|
+
[
|
|
35
|
+
"lib/com/fasterxml/jackson/core/jackson-annotations/#{jackson_version}/jackson-annotations-#{jackson_version}.jar",
|
|
36
|
+
"lib/com/fasterxml/jackson/core/jackson-core/#{jackson_version}/jackson-core-#{jackson_version}.jar",
|
|
37
|
+
"lib/com/fasterxml/jackson/core/jackson-databind/#{jackson_version}/jackson-databind-#{jackson_version}.jar",
|
|
38
|
+
"lib/com/fasterxml/jackson/module/jackson-module-afterburner/#{jackson_version}/jackson-module-afterburner-#{jackson_version}.jar",
|
|
39
|
+
"lib/jrjackson/jars/jrjackson-#{jar_version}.jar"
|
|
40
|
+
]
|
|
21
41
|
end
|
|
22
42
|
end
|
|
23
43
|
end
|
data/lib/jrjackson_jars.rb
CHANGED
|
@@ -2,15 +2,15 @@
|
|
|
2
2
|
begin
|
|
3
3
|
require 'jar_dependencies'
|
|
4
4
|
rescue LoadError
|
|
5
|
-
require 'com/fasterxml/jackson/core/jackson-
|
|
6
|
-
require 'com/fasterxml/jackson/core/jackson-
|
|
7
|
-
require 'com/fasterxml/jackson/
|
|
8
|
-
require 'com/fasterxml/jackson/
|
|
5
|
+
require 'com/fasterxml/jackson/core/jackson-annotations/2.9.4/jackson-annotations-2.9.4.jar'
|
|
6
|
+
require 'com/fasterxml/jackson/core/jackson-databind/2.9.4/jackson-databind-2.9.4.jar'
|
|
7
|
+
require 'com/fasterxml/jackson/core/jackson-core/2.9.4/jackson-core-2.9.4.jar'
|
|
8
|
+
require 'com/fasterxml/jackson/module/jackson-module-afterburner/2.9.4/jackson-module-afterburner-2.9.4.jar'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
if defined? Jars
|
|
12
|
-
require_jar
|
|
13
|
-
require_jar
|
|
14
|
-
require_jar
|
|
15
|
-
require_jar
|
|
12
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-annotations', '2.9.4'
|
|
13
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-databind', '2.9.4'
|
|
14
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-core', '2.9.4'
|
|
15
|
+
require_jar 'com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.9.4'
|
|
16
16
|
end
|
data/pom.xml
CHANGED
|
@@ -11,7 +11,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
|
11
11
|
<modelVersion>4.0.0</modelVersion>
|
|
12
12
|
<groupId>com.jrjackson.jruby</groupId>
|
|
13
13
|
<artifactId>jrjackson</artifactId>
|
|
14
|
-
<version>1.2.
|
|
14
|
+
<version>1.2.23</version>
|
|
15
15
|
<name>A JRuby wrapper for the java jackson json processor jar</name>
|
|
16
16
|
<description>A mostly native JRuby wrapper for the java jackson json processor jar</description>
|
|
17
17
|
<url>http://github.com/guyboertje/jrjackson</url>
|
|
@@ -54,22 +54,22 @@ DO NOT MODIFIY - GENERATED CODE
|
|
|
54
54
|
<dependency>
|
|
55
55
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
56
56
|
<artifactId>jackson-core</artifactId>
|
|
57
|
-
<version>2.9.
|
|
57
|
+
<version>2.9.4</version>
|
|
58
58
|
</dependency>
|
|
59
59
|
<dependency>
|
|
60
60
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
61
61
|
<artifactId>jackson-annotations</artifactId>
|
|
62
|
-
<version>2.9.
|
|
62
|
+
<version>2.9.4</version>
|
|
63
63
|
</dependency>
|
|
64
64
|
<dependency>
|
|
65
65
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
66
66
|
<artifactId>jackson-databind</artifactId>
|
|
67
|
-
<version>2.9.
|
|
67
|
+
<version>2.9.4</version>
|
|
68
68
|
</dependency>
|
|
69
69
|
<dependency>
|
|
70
70
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
71
71
|
<artifactId>jackson-module-afterburner</artifactId>
|
|
72
|
-
<version>2.9.
|
|
72
|
+
<version>2.9.4</version>
|
|
73
73
|
</dependency>
|
|
74
74
|
<dependency>
|
|
75
75
|
<groupId>junit</groupId>
|
|
@@ -118,7 +118,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
|
118
118
|
</executions>
|
|
119
119
|
<configuration>
|
|
120
120
|
<outputDirectory>lib/jrjackson/jars</outputDirectory>
|
|
121
|
-
<finalName>jrjackson-1.2.
|
|
121
|
+
<finalName>jrjackson-1.2.23</finalName>
|
|
122
122
|
</configuration>
|
|
123
123
|
</plugin>
|
|
124
124
|
<plugin>
|
|
@@ -129,7 +129,7 @@ DO NOT MODIFIY - GENERATED CODE
|
|
|
129
129
|
<fileset>
|
|
130
130
|
<directory>lib/jrjackson/jars</directory>
|
|
131
131
|
<includes>
|
|
132
|
-
<include>jrjackson-1.2.
|
|
132
|
+
<include>jrjackson-1.2.23.jar</include>
|
|
133
133
|
<include>*/**/*.jar</include>
|
|
134
134
|
</includes>
|
|
135
135
|
</fileset>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jrjackson
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.5
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
7
|
- Guy Boertje
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2018-02-17 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -60,17 +60,13 @@ files:
|
|
|
60
60
|
- alt_bench.rb
|
|
61
61
|
- changelog.md
|
|
62
62
|
- jrjackson.gemspec
|
|
63
|
-
- lib/com/fasterxml/jackson/core/jackson-annotations/2.
|
|
64
|
-
- lib/com/fasterxml/jackson/core/jackson-
|
|
65
|
-
- lib/com/fasterxml/jackson/core/jackson-
|
|
66
|
-
- lib/com/fasterxml/jackson/
|
|
67
|
-
- lib/com/fasterxml/jackson/core/jackson-databind/2.7.3/jackson-databind-2.7.3.jar
|
|
68
|
-
- lib/com/fasterxml/jackson/core/jackson-databind/2.9.1/jackson-databind-2.9.1.jar
|
|
69
|
-
- lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.7.3/jackson-module-afterburner-2.7.3.jar
|
|
70
|
-
- lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.9.1/jackson-module-afterburner-2.9.1.jar
|
|
63
|
+
- lib/com/fasterxml/jackson/core/jackson-annotations/2.9.4/jackson-annotations-2.9.4.jar
|
|
64
|
+
- lib/com/fasterxml/jackson/core/jackson-core/2.9.4/jackson-core-2.9.4.jar
|
|
65
|
+
- lib/com/fasterxml/jackson/core/jackson-databind/2.9.4/jackson-databind-2.9.4.jar
|
|
66
|
+
- lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.9.4/jackson-module-afterburner-2.9.4.jar
|
|
71
67
|
- lib/jrjackson.rb
|
|
72
68
|
- lib/jrjackson/build_info.rb
|
|
73
|
-
- lib/jrjackson/jars/jrjackson-1.2.
|
|
69
|
+
- lib/jrjackson/jars/jrjackson-1.2.23.jar
|
|
74
70
|
- lib/jrjackson/jrjackson.rb
|
|
75
71
|
- lib/jrjackson_jars.rb
|
|
76
72
|
- lib/require_relative_patch.rb
|
|
@@ -138,10 +134,10 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
138
134
|
- !ruby/object:Gem::Version
|
|
139
135
|
version: '0'
|
|
140
136
|
requirements:
|
|
141
|
-
- jar com.fasterxml.jackson.core:jackson-core, 2.9.
|
|
142
|
-
- jar com.fasterxml.jackson.core:jackson-annotations, 2.9.
|
|
143
|
-
- jar com.fasterxml.jackson.core:jackson-databind, 2.9.
|
|
144
|
-
- jar com.fasterxml.jackson.module:jackson-module-afterburner, 2.9.
|
|
137
|
+
- jar com.fasterxml.jackson.core:jackson-core, 2.9.4
|
|
138
|
+
- jar com.fasterxml.jackson.core:jackson-annotations, 2.9.4
|
|
139
|
+
- jar com.fasterxml.jackson.core:jackson-databind, 2.9.4
|
|
140
|
+
- jar com.fasterxml.jackson.module:jackson-module-afterburner, 2.9.4
|
|
145
141
|
rubyforge_project:
|
|
146
142
|
rubygems_version: 2.6.13
|
|
147
143
|
signing_key:
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|