embulk-formatter-single_value 0.2.0 → 0.3.0

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: 541b2d9cb0b4e216d8e34f499dfbddea2a4f6757
4
- data.tar.gz: 3fdbb979a054c104a4d91f474b73e2e195ee7448
3
+ metadata.gz: 005d2a08bb09c491286ff70df7be2131d534ece7
4
+ data.tar.gz: dde860334b09dfb5ef56c2c6a968806159eb61e3
5
5
  SHA512:
6
- metadata.gz: ceb2462967443de65d9a25d40ff2e62f0469d8b04a19627a490c6028806b647e1a4ed5244792e55c3b2b42da3bd928f8763b64072fffb5484acfae31e3bd6040
7
- data.tar.gz: 1b6297f1046e071e3b43bac6d268ffe7f642af42fda4436064b7690236fc60144aa91016b10185c4ff59858144097fe609e547c0eb418ad2ffce7d7dd8632598
6
+ metadata.gz: 672273adc0a488d82fa9680a87406a3a3c32d721a7c66a5c983e801fbb6c31f76a44122fcab5c031a22de5bc4d9597dfc885f62a170e0aa9128fc4e5b02d2c20
7
+ data.tar.gz: 0981bb0bd9ba73e382204a7afb2c221f7859c098d4ffd7acbca2041b87919fd68acaebdc537e7f7891a64371c027b8f861934e8859dda44ec66771de0cd49f0d
data/.gitignore CHANGED
@@ -10,3 +10,6 @@ build/
10
10
  /.metadata/
11
11
  .classpath
12
12
  .project
13
+ *.iml
14
+
15
+ .DS_Store
data/CHANGELOG.md CHANGED
@@ -1,3 +1,10 @@
1
+ # 0.3.0 (2017-08-23)
2
+
3
+ Changes:
4
+
5
+ * Support new TimestampFormatter API of embulk >= 0.8.29
6
+ * Note that this plugin requires embulk >= 0.8.29 now
7
+
1
8
  # 0.2.0 (2016-02-22)
2
9
 
3
10
  Changes:
data/build.gradle CHANGED
@@ -13,14 +13,14 @@ configurations {
13
13
  provided
14
14
  }
15
15
 
16
- version = "0.2.0"
16
+ version = "0.3.0"
17
17
 
18
18
  sourceCompatibility = 1.7
19
19
  targetCompatibility = 1.7
20
20
 
21
21
  dependencies {
22
- compile "org.embulk:embulk-core:0.8.2"
23
- provided "org.embulk:embulk-core:0.8.2"
22
+ compile "org.embulk:embulk-core:0.8.29+"
23
+ provided "org.embulk:embulk-core:0.8.29+"
24
24
  // compile "YOUR_JAR_DEPENDENCY_GROUP:YOUR_JAR_DEPENDENCY_MODULE:YOUR_JAR_DEPENDENCY_VERSION"
25
25
  testCompile "junit:junit:4.+"
26
26
  }
Binary file
@@ -1,6 +1,6 @@
1
- #Wed Jan 13 12:41:02 JST 2016
1
+ #Wed Aug 09 13:08:20 JST 2017
2
2
  distributionBase=GRADLE_USER_HOME
3
3
  distributionPath=wrapper/dists
4
4
  zipStoreBase=GRADLE_USER_HOME
5
5
  zipStorePath=wrapper/dists
6
- distributionUrl=https\://services.gradle.org/distributions/gradle-2.10-bin.zip
6
+ distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip
data/settings.gradle ADDED
@@ -0,0 +1 @@
1
+ rootProject.name = 'embulk-formatter-single_value'
@@ -85,7 +85,7 @@ public class SingleValueFormatterPlugin
85
85
  final Schema outputSchema = getOutputSchema(inputColumnIndex, inputSchema);
86
86
  final DateTimeZone timezone = DateTimeZone.forID(task.getTimezone());
87
87
  final TimestampFormatter timestampFormatter =
88
- new TimestampFormatter(task.getJRuby(), task.getTimestampFormat(), timezone);
88
+ new TimestampFormatter(task.getTimestampFormat(), timezone);
89
89
 
90
90
  // create a file
91
91
  encoder.nextFile();
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-formatter-single_value
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-02-22 00:00:00.000000000 Z
11
+ date: 2017-08-23 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -64,9 +64,10 @@ files:
64
64
  - gradlew
65
65
  - gradlew.bat
66
66
  - lib/embulk/formatter/single_value.rb
67
+ - settings.gradle
67
68
  - src/main/java/org/embulk/formatter/single_value/SingleValueFormatterPlugin.java
68
69
  - src/test/java/org/embulk/formatter/single_value/TestSingleValueFormatterPlugin.java
69
- - classpath/embulk-formatter-single_value-0.2.0.jar
70
+ - classpath/embulk-formatter-single_value-0.3.0.jar
70
71
  homepage: https://github.com/sonots/embulk-formatter-single_value
71
72
  licenses:
72
73
  - MIT