embulk-filter-null_string 0.2.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: cbd2b26d9a1d5781ff3646bae35c39884d892c9f96b7e13af2a9d39092fe73df
4
+ data.tar.gz: b7fc60deb3483636c3658de54b89eac38938c757ee9bf57e16b908a2d675c1f2
5
+ SHA512:
6
+ metadata.gz: 53cbf87f0c42a0098ab1ce8c9cd43c06bb0f567f100d96f1417bf73a5daad3dbfed737a61ca20a0dacfc7e3acea0635a0f764955d8176063e025f670cc7b6748
7
+ data.tar.gz: e6241a9276456576fe5db98ff02c7e1423c98031a407e3bfe356bea309a8ebe7a56ec710ea6d61a3471cb713e23912dfcd088fd6fa44a93b2cceedaafbe10e4f
Binary file
@@ -0,0 +1,3 @@
1
+ Embulk::JavaPlugin.register_filter(
2
+ "null_string", "org.embulk.filter.null_string.NullStringFilterPlugin",
3
+ File.expand_path('../../../../classpath', __FILE__))
@@ -0,0 +1,3 @@
1
+ Embulk::JavaPlugin.register_filter(
2
+ "null_string", "org.embulk.filter.null_string.NullStringFilterPlugin",
3
+ File.expand_path('../../../../classpath', __FILE__))
metadata ADDED
@@ -0,0 +1,53 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: embulk-filter-null_string
3
+ version: !ruby/object:Gem::Version
4
+ version: 0.2.0
5
+ platform: java
6
+ authors:
7
+ - Hiroyuki Sato
8
+ - Takuma kanari
9
+ autorequire:
10
+ bindir: bin
11
+ cert_chain: []
12
+ date: 2023-10-31 00:00:00.000000000 Z
13
+ dependencies: []
14
+ description: An Embulk filter plugin to convert the matching string to NULL.
15
+ email:
16
+ - hiroysato@gmail.com
17
+ executables: []
18
+ extensions: []
19
+ extra_rdoc_files: []
20
+ files:
21
+ - classpath/embulk-filter-null_string-0.2.0.jar
22
+ - classpath/embulk-util-config-0.4.0.jar
23
+ - classpath/jackson-annotations-2.15.3.jar
24
+ - classpath/jackson-core-2.15.3.jar
25
+ - classpath/jackson-databind-2.15.3.jar
26
+ - classpath/jackson-datatype-jdk8-2.15.3.jar
27
+ - classpath/validation-api-1.1.0.Final.jar
28
+ - lib/embulk/filter/null_string.rb
29
+ - lib/embulk/guess/null_string.rb
30
+ homepage: https://github.com/hiroyuki-sato/embulk-filter-null_string
31
+ licenses:
32
+ - MIT
33
+ metadata: {}
34
+ post_install_message:
35
+ rdoc_options: []
36
+ require_paths:
37
+ - lib
38
+ required_ruby_version: !ruby/object:Gem::Requirement
39
+ requirements:
40
+ - - ">="
41
+ - !ruby/object:Gem::Version
42
+ version: '0'
43
+ required_rubygems_version: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - ">="
46
+ - !ruby/object:Gem::Version
47
+ version: '0'
48
+ requirements: []
49
+ rubygems_version: 3.3.26
50
+ signing_key:
51
+ specification_version: 4
52
+ summary: Null String filter plugin for Embulk
53
+ test_files: []