embulk-parser-query_string 0.1.0 → 0.1.1
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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7ac626f433219956351f1469cb10fcb04bc6d8f7
|
|
4
|
+
data.tar.gz: 9867d72ed16d696d33a03c7221f7ca628ac9f50b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 891c288a06ffff07142f4e12ad7ebbcb73d6b0c3811547d678f7b83a80a9790de7b2cf9fdbf8bf1b9bbe9afaf9dc1bded2d83a18d1c800b85d4c57328add6aa1
|
|
7
|
+
data.tar.gz: 6dfc5c6461092a8fb5243c9b910a798b5a82c87fc9a71cc7612ecad3f2d91a7bb73a26ab0d14d2383a03a32ab449afb24bb62cc50fa0bbd63f0ae7c8c4ff6862
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 0.1.1 - 2015-07-14
|
|
2
|
+
* [fixed] Add missing support capture option to parser [#13](https://github.com/treasure-data/embulk-parser-query_string/pull/13)
|
|
3
|
+
|
|
1
4
|
## 0.1.0 - 2015-07-14
|
|
2
5
|
* [enhancement] Add capture option [#11](https://github.com/treasure-data/embulk-parser-query_string/pull/11)
|
|
3
6
|
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
|
|
2
2
|
Gem::Specification.new do |spec|
|
|
3
3
|
spec.name = "embulk-parser-query_string"
|
|
4
|
-
spec.version = "0.1.
|
|
4
|
+
spec.version = "0.1.1"
|
|
5
5
|
spec.authors = ["yoshihara", "uu59"]
|
|
6
6
|
spec.summary = "Query String parser plugin for Embulk"
|
|
7
7
|
spec.description = "Parses Query String files read by other file input plugins."
|
|
@@ -13,6 +13,7 @@ module Embulk
|
|
|
13
13
|
"decoder" => DataSource.from_java(decoder_task.dump),
|
|
14
14
|
"strip_quote" => config.param("strip_quote", :bool, default: true),
|
|
15
15
|
"strip_whitespace" => config.param("strip_whitespace", :bool, default: true),
|
|
16
|
+
"capture" => config.param("capture", :string, default: nil),
|
|
16
17
|
}
|
|
17
18
|
|
|
18
19
|
columns = []
|
|
@@ -31,6 +32,7 @@ module Embulk
|
|
|
31
32
|
@options = {
|
|
32
33
|
strip_quote: task["strip_quote"],
|
|
33
34
|
strip_whitespace: task["strip_whitespace"],
|
|
35
|
+
capture: task["capture"],
|
|
34
36
|
}
|
|
35
37
|
|
|
36
38
|
@decoder = task.param("decoder", :hash).load_task(Java::LineDecoder::DecoderTask)
|