embulk-filter-split 0.1.0 → 0.1.1

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: 738cccdf4af27bcd6c1c1ee2a018bd80617a1a6f
4
- data.tar.gz: 54f2b40e091ee0b954203437095e5a6037eb343e
3
+ metadata.gz: 57406d0f331e96bbe8ac98f71b8495adb529b940
4
+ data.tar.gz: 47989221e92ae449753de365da8713a2a082bf03
5
5
  SHA512:
6
- metadata.gz: cc3a7b5e166a22e6fd8fd08b6ce88255ae1afc0a67463a9e3281086ed9be1239edb1242db3491fe29fe84bc727a553598353ca6461e9a21d0fad0f6ee46d7b22
7
- data.tar.gz: 50194b64e478eb125be07fea757bb533e78e0905324b70473e04e51155b39f83e809ef0b0829cf072fcc154603025f94571851283e6f04dd0c6fc9526d6874c0
6
+ metadata.gz: 5d29c5eaa553e2a25a802a343820a323df1e9537039256a5c8c3628b75b9dc3d5ec5dab5229837ca9eff0cbb20c632f6a423c8959c68762dbeb6585c24d95270
7
+ data.tar.gz: d514fff7cb1a3949be98367b1cc3b80a6f82b7127d5ab2ed7d42be70c48cd355420e3a41fb8721ca33eba1813c8e4ef0f8e27632f6bce720f3f007e8169a0ec3
data/build.gradle CHANGED
@@ -13,7 +13,10 @@ configurations {
13
13
  provided
14
14
  }
15
15
 
16
- version = "0.1.0"
16
+ version = "0.1.1"
17
+
18
+ sourceCompatibility = 1.7
19
+ targetCompatibility = 1.7
17
20
 
18
21
  dependencies {
19
22
  compile "org.embulk:embulk-core:0.7.7"
@@ -64,10 +64,10 @@ public class SplitFilterPlugin
64
64
  }
65
65
 
66
66
  @Override
67
- public PageOutput open(TaskSource taskSource, Schema inputSchema,
68
- Schema outputSchema, PageOutput output)
67
+ public PageOutput open(TaskSource taskSource, final Schema inputSchema,
68
+ final Schema outputSchema, final PageOutput output)
69
69
  {
70
- PluginTask task = taskSource.loadTask(PluginTask.class);
70
+ final PluginTask task = taskSource.loadTask(PluginTask.class);
71
71
  final Column targetColumn = inputSchema.lookupColumn(task.getTargetKey());
72
72
  final Column outputColumn = task.getOutputKey().isPresent() ?
73
73
  outputSchema.lookupColumn(task.getOutputKey().get()) :
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-filter-split
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - toyama0919
@@ -56,7 +56,7 @@ files:
56
56
  - lib/embulk/filter/split.rb
57
57
  - src/main/java/org/embulk/filter/split/SplitFilterPlugin.java
58
58
  - src/test/java/org/embulk/filter/split/TestSplitFilterPlugin.java
59
- - classpath/embulk-filter-split-0.1.0.jar
59
+ - classpath/embulk-filter-split-0.1.1.jar
60
60
  homepage:
61
61
  licenses:
62
62
  - MIT