jrjackson 0.5.0-java → 0.5.3-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/README.md +3 -1
- data/jrjackson.gemspec +3 -3
- data/lib/com/fasterxml/jackson/core/jackson-core/{2.21.2/jackson-core-2.21.2.jar → 2.21.6/jackson-core-2.21.6.jar} +0 -0
- data/lib/com/fasterxml/jackson/core/jackson-databind/{2.21.2/jackson-databind-2.21.2.jar → 2.21.6/jackson-databind-2.21.6.jar} +0 -0
- data/lib/com/fasterxml/jackson/module/jackson-module-afterburner/{2.21.2/jackson-module-afterburner-2.21.2.jar → 2.21.6/jackson-module-afterburner-2.21.6.jar} +0 -0
- data/lib/jrjackson/build_info.rb +12 -6
- data/lib/jrjackson/jars/jrjackson-1.3.0.jar +0 -0
- data/lib/jrjackson_jars.rb +6 -6
- data/pom.xml +10 -7
- metadata +12 -11
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: efe7ec55639a7298b8e979ed88fa8797245ffb24717d93652d699f62fcdaae5f
|
|
4
|
+
data.tar.gz: d0acb7249c2b049ff701c445ab8f0561c452d2df01785accec16fa1c67e662e5
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f15999557f03bf4a46ec7167531e04916064b8944465da141b5797f0041cc3435811a36827b74a01f760b7b1bc53faf904a975638d806ddea55a4738f734b1dc
|
|
7
|
+
data.tar.gz: fb8d35a2dcba7271593702182f5762c55c3dceb4984c0382ed883ff0ae51b321c73dcd62e302c46e481fb5031fc7826dfaff188db4fefb85bbfd32dad340af85
|
data/README.md
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
|
|
1
|
+
> **Note:** This is the Elastic-maintained fork of jrjackson. The `jrjackson`
|
|
2
|
+
> gem is now published from [elastic/jrjackson](https://github.com/elastic/jrjackson).
|
|
3
|
+
> The original repository is [guyboertje/jrjackson](https://github.com/guyboertje/jrjackson).
|
|
2
4
|
|
|
3
5
|
LICENSE applicable to this library:
|
|
4
6
|
|
data/jrjackson.gemspec
CHANGED
|
@@ -10,9 +10,9 @@ Gem::Specification.new do |s|
|
|
|
10
10
|
s.date = JrJackson::BuildInfo.release_date
|
|
11
11
|
# need java platform for jar-dependencies to work
|
|
12
12
|
s.platform = 'java'
|
|
13
|
-
s.authors = ['Guy Boertje']
|
|
14
|
-
s.email = ['
|
|
15
|
-
s.homepage = "http://github.com/
|
|
13
|
+
s.authors = ['Elastic', 'Guy Boertje']
|
|
14
|
+
s.email = ['info@elastic.co']
|
|
15
|
+
s.homepage = "http://github.com/elastic/jrjackson"
|
|
16
16
|
s.summary = %q{A JRuby wrapper for the java jackson json processor jar}
|
|
17
17
|
s.description = %q{A mostly native JRuby wrapper for the java jackson json processor jar}
|
|
18
18
|
s.license = 'Apache-2.0'
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
data/lib/jrjackson/build_info.rb
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
module JrJackson
|
|
2
2
|
module BuildInfo
|
|
3
3
|
def self.version
|
|
4
|
-
'0.5.
|
|
4
|
+
'0.5.3'
|
|
5
5
|
end
|
|
6
6
|
|
|
7
7
|
def self.release_date
|
|
8
|
-
'2026-
|
|
8
|
+
'2026-09-16'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
def self.files
|
|
@@ -13,7 +13,7 @@ module JrJackson
|
|
|
13
13
|
end
|
|
14
14
|
|
|
15
15
|
def self.jackson_version
|
|
16
|
-
'2.21.
|
|
16
|
+
'2.21.6'
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
def self.jackson_annotations_version
|
|
@@ -21,7 +21,7 @@ module JrJackson
|
|
|
21
21
|
end
|
|
22
22
|
|
|
23
23
|
def self.jackson_databind_version
|
|
24
|
-
'2.21.
|
|
24
|
+
'2.21.6'
|
|
25
25
|
end
|
|
26
26
|
|
|
27
27
|
def self.jar_version
|
|
@@ -30,12 +30,18 @@ module JrJackson
|
|
|
30
30
|
|
|
31
31
|
private
|
|
32
32
|
|
|
33
|
+
# Use an explicit list, not Dir.glob. The gemspec is evaluated at Rakefile
|
|
34
|
+
# load time, before rake compile regenerates these files, so a glob would
|
|
35
|
+
# drop them.
|
|
33
36
|
def self.generated_files
|
|
34
|
-
|
|
37
|
+
%w(pom.xml lib/jrjackson_jars.rb)
|
|
35
38
|
end
|
|
36
39
|
|
|
40
|
+
# Exclude jars from the glob. They are listed with their exact versions in
|
|
41
|
+
# generated_jar_files, so leftover jars from an older version are not
|
|
42
|
+
# packaged.
|
|
37
43
|
def self.repo_files
|
|
38
|
-
Dir["lib/**/*"].select{ |f| File.file? f } + ["README.md", "jrjackson.gemspec", ]
|
|
44
|
+
Dir["lib/**/*"].select{ |f| File.file?(f) && !f.end_with?(".jar") } + ["README.md", "jrjackson.gemspec", ]
|
|
39
45
|
end
|
|
40
46
|
|
|
41
47
|
def self.generated_jar_files
|
|
Binary file
|
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-core/2.21.
|
|
5
|
+
require 'com/fasterxml/jackson/core/jackson-core/2.21.6/jackson-core-2.21.6.jar'
|
|
6
6
|
require 'com/fasterxml/jackson/core/jackson-annotations/2.21/jackson-annotations-2.21.jar'
|
|
7
|
-
require 'com/fasterxml/jackson/core/jackson-databind/2.21.
|
|
8
|
-
require 'com/fasterxml/jackson/module/jackson-module-afterburner/2.21.
|
|
7
|
+
require 'com/fasterxml/jackson/core/jackson-databind/2.21.6/jackson-databind-2.21.6.jar'
|
|
8
|
+
require 'com/fasterxml/jackson/module/jackson-module-afterburner/2.21.6/jackson-module-afterburner-2.21.6.jar'
|
|
9
9
|
end
|
|
10
10
|
|
|
11
11
|
if defined? Jars
|
|
12
|
-
require_jar 'com.fasterxml.jackson.core', 'jackson-core', '2.21.
|
|
12
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-core', '2.21.6'
|
|
13
13
|
require_jar 'com.fasterxml.jackson.core', 'jackson-annotations', '2.21'
|
|
14
|
-
require_jar 'com.fasterxml.jackson.core', 'jackson-databind', '2.21.
|
|
15
|
-
require_jar 'com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.21.
|
|
14
|
+
require_jar 'com.fasterxml.jackson.core', 'jackson-databind', '2.21.6'
|
|
15
|
+
require_jar 'com.fasterxml.jackson.module', 'jackson-module-afterburner', '2.21.6'
|
|
16
16
|
end
|
data/pom.xml
CHANGED
|
@@ -14,7 +14,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
14
14
|
<version>1.3.0</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
|
-
<url>http://github.com/
|
|
17
|
+
<url>http://github.com/elastic/jrjackson</url>
|
|
18
18
|
<licenses>
|
|
19
19
|
<license>
|
|
20
20
|
<name>Apache-2.0</name>
|
|
@@ -23,14 +23,17 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
23
23
|
</license>
|
|
24
24
|
</licenses>
|
|
25
25
|
<developers>
|
|
26
|
+
<developer>
|
|
27
|
+
<name>Elastic</name>
|
|
28
|
+
<email>info@elastic.co</email>
|
|
29
|
+
</developer>
|
|
26
30
|
<developer>
|
|
27
31
|
<name>Guy Boertje</name>
|
|
28
|
-
<email>guyboertje@gmail.com</email>
|
|
29
32
|
</developer>
|
|
30
33
|
</developers>
|
|
31
34
|
<scm>
|
|
32
|
-
<connection>https://github.com/
|
|
33
|
-
<url>http://github.com/
|
|
35
|
+
<connection>https://github.com/elastic/jrjackson.git</connection>
|
|
36
|
+
<url>http://github.com/elastic/jrjackson</url>
|
|
34
37
|
</scm>
|
|
35
38
|
<properties>
|
|
36
39
|
<jruby.plugins.version>3.0.0</jruby.plugins.version>
|
|
@@ -56,7 +59,7 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
56
59
|
<dependency>
|
|
57
60
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
58
61
|
<artifactId>jackson-core</artifactId>
|
|
59
|
-
<version>2.21.
|
|
62
|
+
<version>2.21.6</version>
|
|
60
63
|
</dependency>
|
|
61
64
|
<dependency>
|
|
62
65
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
@@ -66,12 +69,12 @@ DO NOT MODIFY - GENERATED CODE
|
|
|
66
69
|
<dependency>
|
|
67
70
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
68
71
|
<artifactId>jackson-databind</artifactId>
|
|
69
|
-
<version>2.21.
|
|
72
|
+
<version>2.21.6</version>
|
|
70
73
|
</dependency>
|
|
71
74
|
<dependency>
|
|
72
75
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
73
76
|
<artifactId>jackson-module-afterburner</artifactId>
|
|
74
|
-
<version>2.21.
|
|
77
|
+
<version>2.21.6</version>
|
|
75
78
|
</dependency>
|
|
76
79
|
<dependency>
|
|
77
80
|
<groupId>junit</groupId>
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jrjackson
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.3
|
|
5
5
|
platform: java
|
|
6
6
|
authors:
|
|
7
|
+
- Elastic
|
|
7
8
|
- Guy Boertje
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date: 2026-
|
|
11
|
+
date: 2026-09-16 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: bigdecimal
|
|
@@ -39,7 +40,7 @@ dependencies:
|
|
|
39
40
|
version: 0.3.2
|
|
40
41
|
description: A mostly native JRuby wrapper for the java jackson json processor jar
|
|
41
42
|
email:
|
|
42
|
-
-
|
|
43
|
+
- info@elastic.co
|
|
43
44
|
executables: []
|
|
44
45
|
extensions: []
|
|
45
46
|
extra_rdoc_files: []
|
|
@@ -47,9 +48,9 @@ files:
|
|
|
47
48
|
- README.md
|
|
48
49
|
- jrjackson.gemspec
|
|
49
50
|
- lib/com/fasterxml/jackson/core/jackson-annotations/2.21/jackson-annotations-2.21.jar
|
|
50
|
-
- lib/com/fasterxml/jackson/core/jackson-core/2.21.
|
|
51
|
-
- lib/com/fasterxml/jackson/core/jackson-databind/2.21.
|
|
52
|
-
- lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.21.
|
|
51
|
+
- lib/com/fasterxml/jackson/core/jackson-core/2.21.6/jackson-core-2.21.6.jar
|
|
52
|
+
- lib/com/fasterxml/jackson/core/jackson-databind/2.21.6/jackson-databind-2.21.6.jar
|
|
53
|
+
- lib/com/fasterxml/jackson/module/jackson-module-afterburner/2.21.6/jackson-module-afterburner-2.21.6.jar
|
|
53
54
|
- lib/jrjackson.rb
|
|
54
55
|
- lib/jrjackson/build_info.rb
|
|
55
56
|
- lib/jrjackson/jars/jrjackson-1.3.0.jar
|
|
@@ -57,7 +58,7 @@ files:
|
|
|
57
58
|
- lib/jrjackson_jars.rb
|
|
58
59
|
- lib/require_relative_patch.rb
|
|
59
60
|
- pom.xml
|
|
60
|
-
homepage: http://github.com/
|
|
61
|
+
homepage: http://github.com/elastic/jrjackson
|
|
61
62
|
licenses:
|
|
62
63
|
- Apache-2.0
|
|
63
64
|
metadata: {}
|
|
@@ -75,11 +76,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
75
76
|
- !ruby/object:Gem::Version
|
|
76
77
|
version: '0'
|
|
77
78
|
requirements:
|
|
78
|
-
- jar com.fasterxml.jackson.core:jackson-core, 2.21.
|
|
79
|
+
- jar com.fasterxml.jackson.core:jackson-core, 2.21.6
|
|
79
80
|
- jar com.fasterxml.jackson.core:jackson-annotations, 2.21
|
|
80
|
-
- jar com.fasterxml.jackson.core:jackson-databind, 2.21.
|
|
81
|
-
- jar com.fasterxml.jackson.module:jackson-module-afterburner, 2.21.
|
|
82
|
-
rubygems_version: 3.
|
|
81
|
+
- jar com.fasterxml.jackson.core:jackson-databind, 2.21.6
|
|
82
|
+
- jar com.fasterxml.jackson.module:jackson-module-afterburner, 2.21.6
|
|
83
|
+
rubygems_version: 3.6.3
|
|
83
84
|
specification_version: 4
|
|
84
85
|
summary: A JRuby wrapper for the java jackson json processor jar
|
|
85
86
|
test_files: []
|