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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 516559aa6be191a7e18b767b18310a55ef422ee4
4
- data.tar.gz: ffa0b4e5234478eac73ed61ef62d7c8739a912e0
3
+ metadata.gz: a33de4d667fc4550e065bcdf0017ffda402ab93c
4
+ data.tar.gz: 86177d32e0887e0bade98b7778e6d59c9843bfb2
5
5
  SHA512:
6
- metadata.gz: 85ae4c9da24062ee44b1722f8e873ff707cd1d857870c3442cd764141587bbec3bb6a8103ce39e98267fe4cb2e1cb5437a0ad1e578b288fe06694559b12c21c8
7
- data.tar.gz: e622a59511f79253da99ede1dfd62b86a986e5d26b72a50d3685c06e9ed4cdb6bf2db4ef8ddf7168a31131a30216a76f83060bacd879c5da91baa730e5acb1d3
6
+ metadata.gz: 93cb5c92f584ff98e2e58f59504fa2fc32b6478d575e72918e6b37801fc2147c3bc455f332a9d406b76a0f9ff528009313138362321bf2d33fb009a6d9bfd6df
7
+ data.tar.gz: 374201ee5dfad522c47079e7f95250f95ed64d8f8e2f6f16eacf2e18b588f24ec115e7555a431a9734ff55b8b64c7f360a1c204e5495aeda51e41c01875151d4
data/build.gradle CHANGED
@@ -16,7 +16,7 @@ def release_projects = [project(":embulk-core"), project(":embulk-standards")]
16
16
 
17
17
  allprojects {
18
18
  group = 'org.embulk'
19
- version = '0.8.12'
19
+ version = '0.8.13'
20
20
 
21
21
  ext {
22
22
  jrubyVersion = '9.1.2.0'
@@ -4,6 +4,7 @@ Release Notes
4
4
  .. toctree::
5
5
  :maxdepth: 1
6
6
 
7
+ release/release-0.8.13
7
8
  release/release-0.8.12
8
9
  release/release-0.8.11
9
10
  release/release-0.8.10
@@ -0,0 +1,12 @@
1
+ Release 0.8.13
2
+ ==================================
3
+
4
+ CLI Changes
5
+ ------------------
6
+
7
+ * Fixed -L option that became incompatible with JRuby 9.1.2.
8
+
9
+
10
+ Release Date
11
+ ------------------
12
+ 2016-08-12
@@ -284,7 +284,12 @@ examples:
284
284
  else
285
285
  require 'json'
286
286
 
287
- setup_plugin_paths(plugin_paths)
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|
@@ -1,3 +1,3 @@
1
1
  module Embulk
2
- VERSION = '0.8.12'
2
+ VERSION = '0.8.13'
3
3
  end
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.12
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-03 00:00:00.000000000 Z
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.12.jar
112
- - classpath/embulk-core-0.8.12.jar
113
- - classpath/embulk-standards-0.8.12.jar
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