embulk-output-ftp 0.2.2 → 0.2.3
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/.travis.yml +1 -1
- data/build.gradle +5 -5
- data/src/main/java/org/embulk/output/ftp/FtpFileOutputPlugin.java +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 68c199b5640311b2932e9e6e9effa12c5057b169
|
|
4
|
+
data.tar.gz: c951ff03aa715890265c2519fffa8f83f0dde209
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c3637e022fbf2074aa941ed266968b3c1b08167196d67428b3644749b996f7e5f0794168603ff30a365db988437c4781ea7cf55750004c71b2c26d864e6a83ad
|
|
7
|
+
data.tar.gz: 2cc7cb870d6be874b5b5cb1972bfc301c5849a1de0be46aaf64b10c251c760fa262d9c5416b0674ffb76764984555e13effcbbb0f82f987e952b8be725a2b8d0
|
data/.travis.yml
CHANGED
data/build.gradle
CHANGED
|
@@ -17,20 +17,20 @@ configurations {
|
|
|
17
17
|
provided
|
|
18
18
|
}
|
|
19
19
|
|
|
20
|
-
version = "0.2.
|
|
20
|
+
version = "0.2.3"
|
|
21
21
|
|
|
22
22
|
sourceCompatibility = 1.8
|
|
23
23
|
targetCompatibility = 1.8
|
|
24
24
|
|
|
25
25
|
dependencies {
|
|
26
|
-
compile "org.embulk:embulk-core:0.9.
|
|
27
|
-
provided "org.embulk:embulk-core:0.9.
|
|
26
|
+
compile "org.embulk:embulk-core:0.9.20"
|
|
27
|
+
provided "org.embulk:embulk-core:0.9.20"
|
|
28
28
|
compile files("libs/ftp4j-1.7.2.jar")
|
|
29
29
|
compile 'org.embulk.input.ftp:embulk-util-ftp:0.1.6'
|
|
30
30
|
compile "org.bouncycastle:bcpkix-jdk15on:1.52"
|
|
31
31
|
testCompile "junit:junit:4.+"
|
|
32
|
-
testCompile "org.embulk:embulk-core:0.9.
|
|
33
|
-
testCompile "org.embulk:embulk-standards:0.9.
|
|
32
|
+
testCompile "org.embulk:embulk-core:0.9.20:tests"
|
|
33
|
+
testCompile "org.embulk:embulk-standards:0.9.20"
|
|
34
34
|
}
|
|
35
35
|
|
|
36
36
|
task classpath(type: Copy, dependsOn: ["jar"]) {
|
|
@@ -190,7 +190,7 @@ public class FtpFileOutputPlugin implements FileOutputPlugin
|
|
|
190
190
|
filePath = separator + filePath;
|
|
191
191
|
}
|
|
192
192
|
remoteDirectory = getRemoteDirectory(filePath, separator);
|
|
193
|
-
file = Exec.getTempFileSpace().createTempFile(
|
|
193
|
+
file = Exec.getTempFileSpace().createTempFile("tmp");
|
|
194
194
|
log.info("Writing local temporary file \"{}\"", file.getAbsolutePath());
|
|
195
195
|
output = new BufferedOutputStream(new FileOutputStream(file));
|
|
196
196
|
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-output-ftp
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Satoshi Akama
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2019-
|
|
11
|
+
date: 2019-11-12 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -72,7 +72,7 @@ files:
|
|
|
72
72
|
- classpath/bcprov-jdk15on-1.52.jar
|
|
73
73
|
- classpath/ftp4j-1.7.2.jar
|
|
74
74
|
- classpath/embulk-util-ftp-0.1.6.jar
|
|
75
|
-
- classpath/embulk-output-ftp-0.2.
|
|
75
|
+
- classpath/embulk-output-ftp-0.2.3.jar
|
|
76
76
|
homepage: https://github.com/embulk/embulk-output-ftp
|
|
77
77
|
licenses:
|
|
78
78
|
- Apache 2.0
|