embulk-input-riak_cs 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/classpath/{embulk-input-riak_cs-0.2.2.jar → embulk-input-riak_cs-0.2.3.jar} +0 -0
- data/classpath/embulk-input-s3-0.2.3.jar +0 -0
- data/classpath/jcl-over-slf4j-1.7.12.jar +0 -0
- data/src/test/java/org/embulk/input/riak_cs/TestRiakCsFileInputPlugin.java +32 -0
- metadata +6 -5
- data/classpath/commons-logging-1.1.3.jar +0 -0
- data/classpath/embulk-input-s3-0.2.2.jar +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a1ca5df7e274e91cc5a29896de7be482ab83746f
|
|
4
|
+
data.tar.gz: e0658fc776a5f0401293b0358b845b8bc12d540f
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad44dc80d33362e062482003b854bcd075c1b4c45a05169fd9a02cbcd385f04fb7a4373e54e21439d2dc0b26951af6d5709549923a7a67ba871dbb6ffbcaee05
|
|
7
|
+
data.tar.gz: 5b828d02ef8cc505d7639c9e80c830a86cb9217545cd5c89cc4accc78951aa877062d863a4b2d7e91185ee7b5515fd5ecce08b97c360a9bb514c1a75630ca21b
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
package org.embulk.input.riak_cs;
|
|
2
|
+
|
|
3
|
+
import org.embulk.EmbulkTestRuntime;
|
|
4
|
+
import org.embulk.config.ConfigSource;
|
|
5
|
+
import org.embulk.input.s3.AbstractS3FileInputPlugin.PluginTask;
|
|
6
|
+
import org.embulk.input.s3.TestS3FileInputPlugin;
|
|
7
|
+
import org.junit.Before;
|
|
8
|
+
import org.junit.Rule;
|
|
9
|
+
import org.junit.Test;
|
|
10
|
+
|
|
11
|
+
public class TestRiakCsFileInputPlugin
|
|
12
|
+
{
|
|
13
|
+
|
|
14
|
+
@Rule
|
|
15
|
+
public EmbulkTestRuntime runtime = new EmbulkTestRuntime();
|
|
16
|
+
|
|
17
|
+
private RiakCsFileInputPlugin plugin;
|
|
18
|
+
|
|
19
|
+
@Before
|
|
20
|
+
public void createPlugin()
|
|
21
|
+
{
|
|
22
|
+
plugin = runtime.getInstance(RiakCsFileInputPlugin.class);
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
@Test
|
|
26
|
+
public void createS3ClientSuccessfully()
|
|
27
|
+
{
|
|
28
|
+
ConfigSource config = TestS3FileInputPlugin.config().set("endpoint", "my.endpoint.com");
|
|
29
|
+
PluginTask task = config.loadConfig(plugin.getTaskClass());
|
|
30
|
+
plugin.newS3Client(task);
|
|
31
|
+
}
|
|
32
|
+
}
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: embulk-input-riak_cs
|
|
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
|
- Sadayuki Furuhashi
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2015-
|
|
11
|
+
date: 2015-10-15 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -48,15 +48,16 @@ files:
|
|
|
48
48
|
- build.gradle
|
|
49
49
|
- lib/embulk/input/riak_cs.rb
|
|
50
50
|
- src/main/java/org/embulk/input/riak_cs/RiakCsFileInputPlugin.java
|
|
51
|
+
- src/test/java/org/embulk/input/riak_cs/TestRiakCsFileInputPlugin.java
|
|
51
52
|
- classpath/aws-java-sdk-core-1.9.22.jar
|
|
52
53
|
- classpath/aws-java-sdk-kms-1.9.22.jar
|
|
53
54
|
- classpath/aws-java-sdk-s3-1.9.22.jar
|
|
54
55
|
- classpath/commons-codec-1.6.jar
|
|
55
|
-
- classpath/
|
|
56
|
-
- classpath/embulk-input-
|
|
57
|
-
- classpath/embulk-input-s3-0.2.2.jar
|
|
56
|
+
- classpath/embulk-input-riak_cs-0.2.3.jar
|
|
57
|
+
- classpath/embulk-input-s3-0.2.3.jar
|
|
58
58
|
- classpath/httpclient-4.3.4.jar
|
|
59
59
|
- classpath/httpcore-4.3.2.jar
|
|
60
|
+
- classpath/jcl-over-slf4j-1.7.12.jar
|
|
60
61
|
- classpath/joda-time-2.8.2.jar
|
|
61
62
|
homepage: https://github.com/embulk/embulk-input-s3
|
|
62
63
|
licenses:
|
|
Binary file
|
|
Binary file
|