embulk-formatter-single_value 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/README.md +2 -2
- data/build.gradle +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 946f31b542cda7cbe5da84ae606e22d51b668131
|
4
|
+
data.tar.gz: 66b657a89c4b6be9b796206e01c9387476701dac
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 37c4b4cdf4e6910466f6a8d410bf4af842f374fe5e9669e38d90e8b1933a148767e1c25f649d286d3969f890961584540b311055a0aeb30456ce9a3907a54454
|
7
|
+
data.tar.gz: 5cf3fb032bb20d4ccb6efef271166d4da043adbb22665ff609430ddd5e9c67cbe1d6355c5c59c80f47cc8e05f5c347887a628a3f793933013d3b28ecc08fbfdc
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
#
|
1
|
+
# Embulk formatter plugin to output values of a single column
|
2
2
|
|
3
|
-
|
3
|
+
Embulk formatter plugin to output values of a single column. This is a kind of reverse of [embulk-parser-none](https://github.com/sonots/embulk-parser-none)
|
4
4
|
|
5
5
|
## Overview
|
6
6
|
|
data/build.gradle
CHANGED
@@ -13,7 +13,7 @@ configurations {
|
|
13
13
|
provided
|
14
14
|
}
|
15
15
|
|
16
|
-
version = "0.1.
|
16
|
+
version = "0.1.2"
|
17
17
|
|
18
18
|
sourceCompatibility = 1.7
|
19
19
|
targetCompatibility = 1.7
|
@@ -74,8 +74,8 @@ Gem::Specification.new do |spec|
|
|
74
74
|
spec.name = "${project.name}"
|
75
75
|
spec.version = "${project.version}"
|
76
76
|
spec.authors = ["sonots"]
|
77
|
-
spec.summary = %[
|
78
|
-
spec.description = %[
|
77
|
+
spec.summary = %[Embulk formatter plugin to output values of a single column]
|
78
|
+
spec.description = %[Embulk formatter plugin to output values of a single column.]
|
79
79
|
spec.email = ["sonots@gmail.com"]
|
80
80
|
spec.licenses = ["MIT"]
|
81
81
|
spec.homepage = "https://github.com/sonots/embulk-formatter-single_value"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: embulk-formatter-single_value
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- sonots
|
@@ -38,7 +38,7 @@ dependencies:
|
|
38
38
|
version: '10.0'
|
39
39
|
prerelease: false
|
40
40
|
type: :development
|
41
|
-
description:
|
41
|
+
description: Embulk formatter plugin to output values of a single column.
|
42
42
|
email:
|
43
43
|
- sonots@gmail.com
|
44
44
|
executables: []
|
@@ -66,7 +66,7 @@ files:
|
|
66
66
|
- lib/embulk/formatter/single_value.rb
|
67
67
|
- src/main/java/org/embulk/formatter/single_value/SingleValueFormatterPlugin.java
|
68
68
|
- src/test/java/org/embulk/formatter/single_value/TestSingleValueFormatterPlugin.java
|
69
|
-
- classpath/embulk-formatter-single_value-0.1.
|
69
|
+
- classpath/embulk-formatter-single_value-0.1.2.jar
|
70
70
|
homepage: https://github.com/sonots/embulk-formatter-single_value
|
71
71
|
licenses:
|
72
72
|
- MIT
|
@@ -90,5 +90,5 @@ rubyforge_project:
|
|
90
90
|
rubygems_version: 2.1.9
|
91
91
|
signing_key:
|
92
92
|
specification_version: 4
|
93
|
-
summary:
|
93
|
+
summary: Embulk formatter plugin to output values of a single column
|
94
94
|
test_files: []
|