embulk 0.10.33-java → 0.10.36-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/embulk.gemspec +2 -2
- data/lib/embulk/gem_version.rb +1 -1
- data/lib/embulk/java/imports.rb +15 -0
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b51e7825b0ee38563243455c20477f72159ef0d6
|
4
|
+
data.tar.gz: c0d90f2c78101990eec3c0db3f579875b992c5f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a0ab3585f30fafa6be25c689040ba6abbebdff1d68079a032f16b870f4bd28af79d086016fe8dd3aa8341527071f44b7eb4d4154867728720cde8227c36ba940
|
7
|
+
data.tar.gz: d8ea48657d104652ca399cbab244118cb2616f4601d2b8f4a994b3540e286464b82dcee2c36009e2a43a2334c2b9893d46908d63f61f27c1c2b9a4383550ece0
|
data/embulk.gemspec
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
Gem::Specification.new do |gem|
|
2
2
|
gem.name = "embulk"
|
3
|
-
gem.version = "0.10.
|
3
|
+
gem.version = "0.10.36"
|
4
4
|
gem.license = "Apache-2.0"
|
5
5
|
|
6
6
|
gem.summary = "Embulk's runtime library for Ruby."
|
@@ -33,7 +33,7 @@ Gem::Specification.new do |gem|
|
|
33
33
|
"documentation_uri" => "https://www.embulk.org/",
|
34
34
|
"homepage_uri" => gem.homepage,
|
35
35
|
# "mailing_list_uri" => "",
|
36
|
-
"source_code_uri" => "https://github.com/embulk/embulk/tree/v0.10.
|
36
|
+
"source_code_uri" => "https://github.com/embulk/embulk/tree/v0.10.36",
|
37
37
|
# "wiki_uri" => "",
|
38
38
|
}
|
39
39
|
end
|
data/lib/embulk/gem_version.rb
CHANGED
data/lib/embulk/java/imports.rb
CHANGED
@@ -1,5 +1,20 @@
|
|
1
|
+
# Required to use "Java features" from the Ruby side.
|
1
2
|
require 'java'
|
2
3
|
|
4
|
+
# Required to access JRuby-specific internal features, such as `JRuby.runtime`.
|
5
|
+
require 'jruby' if Gem::Version.new(JRUBY_VERSION) >= Gem::Version.new('9.3')
|
6
|
+
|
7
|
+
# Both of 'java' and 'jruby' should be loaded in Embulk's use-case in nature.
|
8
|
+
#
|
9
|
+
# Embulk had loaded only 'java' explicitly until Embulk v0.10.35.
|
10
|
+
# It was because loading 'java' automatically loaded also 'jruby' until JRuby 9.2.
|
11
|
+
# But, it has changed since JRuby 9.3. JRuby 9.3+ needs loading 'jruby' explicitly.
|
12
|
+
#
|
13
|
+
# See also: https://github.com/jruby/jruby/issues/7221#issuecomment-1133646241
|
14
|
+
#
|
15
|
+
# Here, Embulk limits loading 'jruby' only in JRuby 9.3+ to ensure compatibility.
|
16
|
+
# We may remove the limitation in the future.
|
17
|
+
|
3
18
|
#
|
4
19
|
# this file is loaded by embulk/java/bootstrap.rb
|
5
20
|
#
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.10.
|
4
|
+
version: 0.10.36
|
5
5
|
platform: java
|
6
6
|
authors:
|
7
7
|
- Sadayuki Furuhashi
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date:
|
13
|
+
date: 2022-06-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
@@ -78,7 +78,7 @@ metadata:
|
|
78
78
|
changelog_uri: https://github.com/embulk/embulk/releases
|
79
79
|
documentation_uri: https://www.embulk.org/
|
80
80
|
homepage_uri: https://www.embulk.org/
|
81
|
-
source_code_uri: https://github.com/embulk/embulk/tree/v0.10.
|
81
|
+
source_code_uri: https://github.com/embulk/embulk/tree/v0.10.36
|
82
82
|
post_install_message:
|
83
83
|
rdoc_options: []
|
84
84
|
require_paths:
|