embulk-filter-unnest 0.1.0-java

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