embulk 0.8.19 → 0.8.20
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
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7245150e5b7108e569bc0f5d24e0fcc45a4ca29c
|
|
4
|
+
data.tar.gz: dcd87b632fb71c07d1c423fd2f0537f4d7ac5156
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 640addfdeadd9a2716f3261a9fd51e5ce9da64b625c44b9b390586d363e8c01ced751f64fcc3a54fbd1ee2ccac50b05a5179c4b3dc90ae894a5849c7aef13608
|
|
7
|
+
data.tar.gz: 58222c6550e4454cd85eae65ac868e32d0540b9e3b118ad5006bbf5ef82a2d5f8b0ef28c8a87062557f39b33d67e6a6edc1836f3bf2d3c759587fc5739ada8b0
|
data/build.gradle
CHANGED
|
@@ -106,7 +106,7 @@ public class PreviewExecutor
|
|
|
106
106
|
List<FilterPlugin> filterPlugins = newFilterPlugins(task);
|
|
107
107
|
|
|
108
108
|
if (inputPlugin instanceof FileInputRunner) { // file input runner
|
|
109
|
-
Buffer sample = SamplingParserPlugin.runFileInputSampling((FileInputRunner)inputPlugin, config.getNested("in"), createSampleBufferConfigFromExecConfig(
|
|
109
|
+
Buffer sample = SamplingParserPlugin.runFileInputSampling((FileInputRunner)inputPlugin, config.getNested("in"), createSampleBufferConfigFromExecConfig(task.getExecConfig()));
|
|
110
110
|
FileInputRunner previewRunner = new FileInputRunner(new BufferFileInputPlugin(sample));
|
|
111
111
|
return doPreview(task, previewRunner, filterPlugins);
|
|
112
112
|
}
|
data/embulk-docs/src/release.rst
CHANGED
data/lib/embulk/version.rb
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
module Embulk
|
|
4
4
|
@@warned = false
|
|
5
5
|
|
|
6
|
-
VERSION_INTERNAL = '0.8.
|
|
6
|
+
VERSION_INTERNAL = '0.8.20'
|
|
7
7
|
|
|
8
8
|
DEPRECATED_MESSAGE = 'Embulk::VERSION in (J)Ruby is deprecated. Use org.embulk.EmbulkVersion::VERSION instead. If this message is from a plugin, please tell this to the author of the plugin!'
|
|
9
9
|
def self.const_missing(name)
|
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.8.
|
|
4
|
+
version: 0.8.20
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Sadayuki Furuhashi
|
|
@@ -110,9 +110,9 @@ files:
|
|
|
110
110
|
- classpath/commons-compress-1.10.jar
|
|
111
111
|
- classpath/commons-lang-2.4.jar
|
|
112
112
|
- classpath/commons-lang3-3.4.jar
|
|
113
|
-
- classpath/embulk-cli-0.8.
|
|
114
|
-
- classpath/embulk-core-0.8.
|
|
115
|
-
- classpath/embulk-standards-0.8.
|
|
113
|
+
- classpath/embulk-cli-0.8.20.jar
|
|
114
|
+
- classpath/embulk-core-0.8.20.jar
|
|
115
|
+
- classpath/embulk-standards-0.8.20.jar
|
|
116
116
|
- classpath/guava-18.0.jar
|
|
117
117
|
- classpath/guice-4.0.jar
|
|
118
118
|
- classpath/guice-bootstrap-0.1.1.jar
|
|
@@ -447,6 +447,7 @@ files:
|
|
|
447
447
|
- embulk-docs/src/release/release-0.8.18.rst
|
|
448
448
|
- embulk-docs/src/release/release-0.8.19.rst
|
|
449
449
|
- embulk-docs/src/release/release-0.8.2.rst
|
|
450
|
+
- embulk-docs/src/release/release-0.8.20.rst
|
|
450
451
|
- embulk-docs/src/release/release-0.8.3.rst
|
|
451
452
|
- embulk-docs/src/release/release-0.8.4.rst
|
|
452
453
|
- embulk-docs/src/release/release-0.8.5.rst
|