fluent-plugin-array-splitter 0.1.3 → 0.1.4
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 +4 -4
- data/fluent-plugin-array-splitter.gemspec +2 -2
- data/lib/fluent/plugin/filter_array_splitter.rb +16 -20
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: cf67e2c59a583af70c9b81774c104b80369013106d2157a21f5784d21664e735
|
4
|
+
data.tar.gz: 8fa7990b28a24aa91595e21c8920badc08a7a1e9b35cec2679d2bdc43fdd3c2e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9bc39e54c5b3900801f4e8739f7bbb569024c8cb521445cdc230f41ee51e55a3cea6c3e83536bd74e8b2bba9feacb8f52e43e2a40efc021e8a8a4ba673961a7a
|
7
|
+
data.tar.gz: 8c794a899d574885303d49c5d066bc24520114949dd12eda93327b34a0490d8a1b38246c54ec58eb4dad8a742263dab6e396c7ef565ceddcee98d2f4510dedf5
|
@@ -3,14 +3,14 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
|
3
3
|
|
4
4
|
Gem::Specification.new do |spec|
|
5
5
|
spec.name = "fluent-plugin-array-splitter"
|
6
|
-
spec.version = "0.1.
|
6
|
+
spec.version = "0.1.4"
|
7
7
|
spec.authors = ["pcoffmanjr"]
|
8
8
|
spec.email = ["pcoffman@ctc-america.com"]
|
9
9
|
|
10
10
|
spec.summary = %q{A Fluentd plugin to split array values into separate records.}
|
11
11
|
spec.description = %q{This Fluentd plugin takes array values from a specified field and creates separate records for each array element.}
|
12
12
|
spec.homepage = "https://github.com/paulcoffmanjr/fluent-plugin-array-splitter"
|
13
|
-
spec.license = "
|
13
|
+
spec.license = "Apache-2.0"
|
14
14
|
|
15
15
|
test_files, files = `git ls-files -z`.split("\x0").partition do |f|
|
16
16
|
f.match(%r{^(test|spec|features)/})
|
@@ -1,24 +1,20 @@
|
|
1
|
-
#
|
2
|
-
|
1
|
+
# Apache License
|
2
|
+
#
|
3
|
+
# Version 2.0, January 2004
|
4
|
+
#
|
3
5
|
# Copyright (c) 2023 pcoffmanjr
|
4
|
-
|
5
|
-
#
|
6
|
-
#
|
7
|
-
#
|
8
|
-
#
|
9
|
-
#
|
10
|
-
#
|
11
|
-
|
12
|
-
#
|
13
|
-
#
|
14
|
-
|
15
|
-
#
|
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.
|
6
|
+
#
|
7
|
+
# Licensed under the Apache License, Version 2.0 (the "License");
|
8
|
+
# you may not use this file except in compliance with the License.
|
9
|
+
# You may obtain a copy of the License at
|
10
|
+
#
|
11
|
+
# http://www.apache.org/licenses/LICENSE-2.0
|
12
|
+
#
|
13
|
+
# Unless required by applicable law or agreed to in writing, software
|
14
|
+
# distributed under the License is distributed on an "AS IS" BASIS,
|
15
|
+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
16
|
+
# See the License for the specific language governing permissions and
|
17
|
+
# limitations under the License.
|
22
18
|
|
23
19
|
|
24
20
|
require "fluent/plugin/filter"
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fluent-plugin-array-splitter
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- pcoffmanjr
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -90,7 +90,7 @@ files:
|
|
90
90
|
- test/plugin/test_filter_array_splitter.rb
|
91
91
|
homepage: https://github.com/paulcoffmanjr/fluent-plugin-array-splitter
|
92
92
|
licenses:
|
93
|
-
-
|
93
|
+
- Apache-2.0
|
94
94
|
metadata: {}
|
95
95
|
post_install_message:
|
96
96
|
rdoc_options: []
|