embulk-filter-flatten_json 0.1.0-java

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 ADDED
@@ -0,0 +1,7 @@
1
+ ---
2
+ SHA256:
3
+ metadata.gz: 4c6c71f50009d3d02184d19863d8d0ddcf1aacdf67b59b9f1d69007bedffcbe8
4
+ data.tar.gz: 4f751e375d647ab85c92a048153d58cabf6ab623637c74ddfedd978dff8efcf1
5
+ SHA512:
6
+ metadata.gz: '044780ea4cf41a4e47ccdd3bd57c4326088d731f1ae853cccd329fa41d5d2c2a600b60fe8ac8818e5c6b20272bceefc9debdc7152322a9bd612b60286300cc06'
7
+ data.tar.gz: 9a4de21d6fe1437cf6a3c3f4fe375e8593e64099e53018820eaa4d527657f0a13b0a96957cb7e4875e380fd34cee9335cf96440fe1d9cd6ba57cc1bb1660f07e
data/LICENSE.txt ADDED
@@ -0,0 +1,22 @@
1
+ Copyright (c) 2015 Takahiro Nakayama
2
+
3
+ MIT License
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining
6
+ a copy of this software and associated documentation files (the
7
+ "Software"), to deal in the Software without restriction, including
8
+ without limitation the rights to use, copy, modify, merge, publish,
9
+ distribute, sublicense, and/or sell copies of the Software, and to
10
+ permit persons to whom the Software is furnished to do so, subject to
11
+ the following conditions:
12
+
13
+ The above copyright notice and this permission notice shall be
14
+ included in all copies or substantial portions of the Software.
15
+
16
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,3 @@
1
+ Embulk::JavaPlugin.register_filter(
2
+ "flatten_json", "org.embulk.filter.flatten_json.FlattenJsonFilterPlugin",
3
+ File.expand_path("../../../../classpath", __FILE__))
metadata ADDED
@@ -0,0 +1,47 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: embulk-filter-flatten_json
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.1.0
5
+ platform: java
6
+ authors:
7
+ - Civitaspo
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2021-02-23 00:00:00.000000000 Z
12
+ dependencies: []
13
+ description: Embulk filter plugin to flatten json
14
+ email:
15
+ - civitaspo@gmail.com
16
+ executables: []
17
+ extensions: []
18
+ extra_rdoc_files: []
19
+ files:
20
+ - LICENSE.txt
21
+ - classpath/embulk-filter-flatten_json-0.1.0.jar
22
+ - lib/embulk/filter/flatten_json.rb
23
+ homepage: https://github.com/civitaspo/embulk-filter-flatten_json
24
+ licenses:
25
+ - MIT
26
+ metadata: {}
27
+ post_install_message:
28
+ rdoc_options: []
29
+ require_paths:
30
+ - lib
31
+ required_ruby_version: !ruby/object:Gem::Requirement
32
+ requirements:
33
+ - - ">="
34
+ - !ruby/object:Gem::Version
35
+ version: '0'
36
+ required_rubygems_version: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - ">="
39
+ - !ruby/object:Gem::Version
40
+ version: '0'
41
+ requirements: []
42
+ rubyforge_project:
43
+ rubygems_version: 2.7.9
44
+ signing_key:
45
+ specification_version: 4
46
+ summary: Flatten Json filter plugin for Embulk
47
+ test_files: []