embulk-input-command 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: ee726d89b0b1505a617bffe0991a47cbe48406f5
4
- data.tar.gz: c65c075e051dcb9f6d29a425893ff09d40107ecf
3
+ metadata.gz: 264905836dcbf40412b025c490d5a69623d49707
4
+ data.tar.gz: ccec49b93752f99230e34abc1d0c23e15fe78763
5
5
  SHA512:
6
- metadata.gz: 3fd271cc2c2f6948aee54359d128e87bcd01af881d45b1d9a6850500fed3bca95aa4cb839daa92bd90834dcbf13b6a750a3ffdc51ec6cb11f7c0e14f2de499c5
7
- data.tar.gz: 2b3dfc3b6a17a2af3442fc4c626d9842af29f1e1785da09e6a11b11bc217dae1eb1572df8b1b490b06812138c861a887d50ddf8fae5112cada2656d95a74e1e3
6
+ metadata.gz: dc845eced6e2142c2c9feb05d4ad233071946b8470b168db59886fe143ab04452b347856f3a06e6dbb58ff8a433e9918ed2782213df308d0960716ca32a2025f
7
+ data.tar.gz: ee2bc9991ceed164da9bd1cd62aefc0edde198b5f63e2fb029320ef00c85204ba236b356c85b42af3e85246bc88a18356a97586af02984cccc83fef2ce063b5f
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Command file input plugin for Embulk
2
2
 
3
- This plugin extends a Command and data from its stdout (or stderr).
3
+ This plugin runs a command and reads data from its stdout (or stderr).
4
4
 
5
5
  ## Overview
6
6
 
@@ -12,11 +12,11 @@ configurations {
12
12
  provided
13
13
  }
14
14
 
15
- version = "0.1.0"
15
+ version = "0.1.1"
16
16
 
17
17
  dependencies {
18
- compile "org.embulk:embulk-core:0.4.2"
19
- provided "org.embulk:embulk-core:0.4.2"
18
+ compile "org.embulk:embulk-core:0.4.8"
19
+ provided "org.embulk:embulk-core:0.4.8"
20
20
  testCompile "junit:junit:4.+"
21
21
  }
22
22
 
@@ -37,9 +37,9 @@ task gemspec << { file("build/gemspec").write($/
37
37
  Gem::Specification.new do |spec|
38
38
  spec.name = "${project.name}"
39
39
  spec.version = "${project.version}"
40
- spec.authors = ["FURUHASHI Sadayuki"]
40
+ spec.authors = ["Sadayuki Furuhashi"]
41
41
  spec.summary = %[Command file input plugin for Embulk]
42
- spec.description = %[Command file input plugin is an Embulk plugin that reads stdout (or stderr) of a command. Output format can be anything supported by parser plugin. Search the parser plugins by 'embulk-parser' keyword.]
42
+ spec.description = %[Executes commands and writes files to STDIN.]
43
43
  spec.email = ["frsyuki@gmail.com"]
44
44
  spec.licenses = ["Apache 2.0"]
45
45
  spec.homepage = "https://github.com/embulk/embulk-input-command"
@@ -68,22 +68,22 @@ public class CommandFileInputPlugin
68
68
 
69
69
  @Override
70
70
  public ConfigDiff resume(TaskSource taskSource,
71
- int processorCount,
71
+ int taskCount,
72
72
  FileInputPlugin.Control control)
73
73
  {
74
- control.run(taskSource, processorCount);
74
+ control.run(taskSource, taskCount);
75
75
  return Exec.newConfigDiff();
76
76
  }
77
77
 
78
78
  @Override
79
79
  public void cleanup(TaskSource taskSource,
80
- int processorCount,
80
+ int taskCount,
81
81
  List<CommitReport> successCommitReports)
82
82
  {
83
83
  }
84
84
 
85
85
  @Override
86
- public TransactionalFileInput open(TaskSource taskSource, int processorIndex)
86
+ public TransactionalFileInput open(TaskSource taskSource, int taskIndex)
87
87
  {
88
88
  PluginTask task = taskSource.loadTask(PluginTask.class);
89
89
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-input-command
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
- - FURUHASHI Sadayuki
7
+ - Sadayuki Furuhashi
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-02-18 00:00:00.000000000 Z
11
+ date: 2015-02-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -38,7 +38,7 @@ dependencies:
38
38
  version: '10.0'
39
39
  prerelease: false
40
40
  type: :development
41
- description: Command file input plugin is an Embulk plugin that reads stdout (or stderr) of a command. Output format can be anything supported by parser plugin. Search the parser plugins by 'embulk-parser' keyword.
41
+ description: Executes commands and writes files to STDIN.
42
42
  email:
43
43
  - frsyuki@gmail.com
44
44
  executables: []
@@ -56,7 +56,7 @@ files:
56
56
  - lib/embulk/input/command.rb
57
57
  - src/main/java/org/embulk/input/CommandFileInputPlugin.java
58
58
  - src/test/java/org/embulk/input/TestCommandFileInputPlugin.java
59
- - classpath/embulk-input-command-0.1.0.jar
59
+ - classpath/embulk-input-command-0.1.1.jar
60
60
  homepage: https://github.com/embulk/embulk-input-command
61
61
  licenses:
62
62
  - Apache 2.0