embulk 0.8.12 → 0.8.13
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/build.gradle +1 -1
- data/embulk-docs/src/release.rst +1 -0
- data/embulk-docs/src/release/release-0.8.13.rst +12 -0
- data/lib/embulk/command/embulk_run.rb +6 -22
- data/lib/embulk/version.rb +1 -1
- metadata +6 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a33de4d667fc4550e065bcdf0017ffda402ab93c
|
4
|
+
data.tar.gz: 86177d32e0887e0bade98b7778e6d59c9843bfb2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93cb5c92f584ff98e2e58f59504fa2fc32b6478d575e72918e6b37801fc2147c3bc455f332a9d406b76a0f9ff528009313138362321bf2d33fb009a6d9bfd6df
|
7
|
+
data.tar.gz: 374201ee5dfad522c47079e7f95250f95ed64d8f8e2f6f16eacf2e18b588f24ec115e7555a431a9734ff55b8b64c7f360a1c204e5495aeda51e41c01875151d4
|
data/build.gradle
CHANGED
data/embulk-docs/src/release.rst
CHANGED
@@ -284,7 +284,12 @@ examples:
|
|
284
284
|
else
|
285
285
|
require 'json'
|
286
286
|
|
287
|
-
|
287
|
+
# Gem::StubSpecification is an internal API that seems chainging often.
|
288
|
+
# Gem::Specification.add_spec is deprecated also. Therefore, here makes
|
289
|
+
# -L <path> option alias of -I <path>/lib by assuming that *.gemspec file
|
290
|
+
# always has require_paths = ["lib"].
|
291
|
+
load_paths = load_paths + plugin_paths.map {|path| File.join(path, "lib") }
|
292
|
+
|
288
293
|
setup_load_paths(load_paths)
|
289
294
|
setup_classpaths(classpaths)
|
290
295
|
|
@@ -323,27 +328,6 @@ examples:
|
|
323
328
|
|
324
329
|
private
|
325
330
|
|
326
|
-
def self.setup_plugin_paths(plugin_paths)
|
327
|
-
plugin_paths.each do |path|
|
328
|
-
unless File.directory?(path)
|
329
|
-
raise "Path '#{path}' is not a directory"
|
330
|
-
end
|
331
|
-
specs = Dir[File.join(File.expand_path(path), "*.gemspec")]
|
332
|
-
if specs.empty?
|
333
|
-
raise "Path '#{path}' does not include *.gemspec file. Hint: Did you run './gradlew package' command?"
|
334
|
-
end
|
335
|
-
specs.each do |spec|
|
336
|
-
gem_path = File.dirname(spec)
|
337
|
-
Dir.chdir(path) do
|
338
|
-
# cd to path because spec could include `git ...`
|
339
|
-
stub = Gem::StubSpecification.new(spec)
|
340
|
-
stub.define_singleton_method(:full_gem_path) { gem_path }
|
341
|
-
Gem::Specification.add_spec(stub)
|
342
|
-
end
|
343
|
-
end
|
344
|
-
end
|
345
|
-
end
|
346
|
-
|
347
331
|
def self.setup_load_paths(load_paths)
|
348
332
|
# first $LOAD_PATH has highet priority. later load_paths should have highest priority.
|
349
333
|
load_paths.each do |load_path|
|
data/lib/embulk/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.13
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sadayuki Furuhashi
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-08-
|
11
|
+
date: 2016-08-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: jruby-jars
|
@@ -108,9 +108,9 @@ files:
|
|
108
108
|
- classpath/commons-beanutils-core-1.8.3.jar
|
109
109
|
- classpath/commons-compress-1.10.jar
|
110
110
|
- classpath/commons-lang3-3.1.jar
|
111
|
-
- classpath/embulk-cli-0.8.
|
112
|
-
- classpath/embulk-core-0.8.
|
113
|
-
- classpath/embulk-standards-0.8.
|
111
|
+
- classpath/embulk-cli-0.8.13.jar
|
112
|
+
- classpath/embulk-core-0.8.13.jar
|
113
|
+
- classpath/embulk-standards-0.8.13.jar
|
114
114
|
- classpath/guava-18.0.jar
|
115
115
|
- classpath/guice-4.0.jar
|
116
116
|
- classpath/guice-bootstrap-0.1.1.jar
|
@@ -426,6 +426,7 @@ files:
|
|
426
426
|
- embulk-docs/src/release/release-0.8.10.rst
|
427
427
|
- embulk-docs/src/release/release-0.8.11.rst
|
428
428
|
- embulk-docs/src/release/release-0.8.12.rst
|
429
|
+
- embulk-docs/src/release/release-0.8.13.rst
|
429
430
|
- embulk-docs/src/release/release-0.8.2.rst
|
430
431
|
- embulk-docs/src/release/release-0.8.3.rst
|
431
432
|
- embulk-docs/src/release/release-0.8.4.rst
|