embulk-filter-timestamp_format 0.1.1 → 0.1.2

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: 3a7dcaa4b130acfa1790e07f7c132d63eb677cc5
4
- data.tar.gz: 412c0aa7676be1171a43e8a903cf428389d54bb6
3
+ metadata.gz: 97c05b1d28b7448d6e1735ba6e28adc7833291e5
4
+ data.tar.gz: 95cb59a5052db01d2bfce5409c346bff9212974e
5
5
  SHA512:
6
- metadata.gz: 4af5ea7bba8fc5f6f67a342aa2170d77f5cce3d6c0ad92e0ee90bd48e587e0172b227736f5c4361251589475b398e3943d334c12dd442f3c762b3f235a712925
7
- data.tar.gz: 3b5fdde8febd1afb7dc5d9242ef07f6f15d2a4f003f5a1a55716fa6a4e589e9a6dfaee847cf81176d18a7ded3ff9becbfd0e5bdbcbaa3f50976854a0dde3e3a9
6
+ metadata.gz: de2219fa5b303126039e480b5dcbe53cb577c63ddcef169b25cadd8410d4e3de83c65f66324831dc3064536e9cb40a88585bff84f998b3bb085d370ad66d1403
7
+ data.tar.gz: 8fba27c468a78cc16924aa8b02fe59c68900ef8903db43ebffdb62691783fbf66b3686df6047e8f4771efd9722571913905e87a4fae257a805ba50d570a11ae3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # 0.1.2 (2016-04-26)
2
+
3
+ Changes:
4
+
5
+ * Relax ConfigException
6
+
1
7
  # 0.1.1 (2016-04-26)
2
8
 
3
9
  Enhancements:
data/build.gradle CHANGED
@@ -13,7 +13,7 @@ configurations {
13
13
  provided
14
14
  }
15
15
 
16
- version = "0.1.1"
16
+ version = "0.1.2"
17
17
  sourceCompatibility = 1.7
18
18
  targetCompatibility = 1.7
19
19
 
@@ -77,11 +77,6 @@ public class TimestampFormatFilterPlugin implements FilterPlugin
77
77
  PluginTask task = config.loadConfig(PluginTask.class);
78
78
 
79
79
  List<ColumnConfig> columns = task.getColumns();
80
-
81
- if (columns.size() == 0) {
82
- throw new ConfigException("\"columns\" must be specified.");
83
- }
84
-
85
80
  for (ColumnConfig columnConfig : columns) {
86
81
  String name = columnConfig.getName();
87
82
  if (!name.startsWith("$.")) {
@@ -1,5 +1,5 @@
1
1
  package org.embulk.filter;
2
2
 
3
- public class TestColumnFilterPlugin
3
+ public class TestTimestampFormatFilterPlugin
4
4
  {
5
5
  }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: embulk-filter-timestamp_format
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naotoshi Seo
@@ -77,7 +77,7 @@ files:
77
77
  - src/main/java/org/embulk/filter/timestamp_format/TimestampFormatter.java
78
78
  - src/main/java/org/embulk/filter/timestamp_format/TimestampParser.java
79
79
  - src/test/java/org/embulk/filter/TestTimestampFormatFilterPlugin.java
80
- - classpath/embulk-filter-timestamp_format-0.1.1.jar
80
+ - classpath/embulk-filter-timestamp_format-0.1.2.jar
81
81
  homepage: https://github.com/sonots/embulk-filter-timestamp_format
82
82
  licenses:
83
83
  - MIT