fluent-plugin-elapsed-time 0.0.8 → 0.0.9
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 +5 -5
- data/.github/dependabot.yml +6 -0
- data/.github/workflows/test.yml +35 -0
- data/CHANGELOG.md +6 -0
- data/fluent-plugin-elapsed-time.gemspec +1 -2
- metadata +5 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
|
-
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
2
|
+
SHA256:
|
|
3
|
+
metadata.gz: 63c4d3cb00703293f90eaf251d165cd09d15ec41c5b55c9e72a93781dd09bf25
|
|
4
|
+
data.tar.gz: beea37710bd610aa376e8cc310777a154f01f7992af5df07a22ed6fc02f22fde
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 82fa93cf8a14a5d328c20b9494eb1f75196afb45a04af9afc437e6cc2cdddfb2bcc721d4c185ca8c00394c3cf018e4860ef5422d268bbd43a77faf0962c5fb3d
|
|
7
|
+
data.tar.gz: 0d8869d44c91d1c44a07ff844d1c2db0cf31645cdd3630e86f540d8ec056a1fecc20144abfbf98a10c74eb0d81582c64c77a92276162909e3d3e33b79a6645f5
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
name: test
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
branches: [master]
|
|
5
|
+
pull_request:
|
|
6
|
+
branches: [master]
|
|
7
|
+
schedule:
|
|
8
|
+
- cron: '0 0 1 * *'
|
|
9
|
+
jobs:
|
|
10
|
+
ruby-versions:
|
|
11
|
+
uses: ruby/actions/.github/workflows/ruby_versions.yml@master
|
|
12
|
+
with:
|
|
13
|
+
engine: cruby
|
|
14
|
+
min_version: 2.7
|
|
15
|
+
build:
|
|
16
|
+
needs: ruby-versions
|
|
17
|
+
runs-on: ${{ matrix.os }}
|
|
18
|
+
strategy:
|
|
19
|
+
fail-fast: false
|
|
20
|
+
matrix:
|
|
21
|
+
ruby: ${{ fromJson(needs.ruby-versions.outputs.versions) }}
|
|
22
|
+
exclude:
|
|
23
|
+
- ruby: head
|
|
24
|
+
os:
|
|
25
|
+
- ubuntu-latest
|
|
26
|
+
name: Ruby ${{ matrix.ruby }} ${{ matrix.os }}
|
|
27
|
+
steps:
|
|
28
|
+
- uses: actions/checkout@v6
|
|
29
|
+
- uses: ruby/setup-ruby@v1
|
|
30
|
+
with:
|
|
31
|
+
ruby-version: ${{ matrix.ruby }}
|
|
32
|
+
- name: unit testing
|
|
33
|
+
run: |
|
|
34
|
+
bundle install --jobs 4 --retry 3
|
|
35
|
+
bundle exec rake spec
|
data/CHANGELOG.md
CHANGED
|
@@ -3,14 +3,13 @@ $:.push File.expand_path('../lib', __FILE__)
|
|
|
3
3
|
|
|
4
4
|
Gem::Specification.new do |gem|
|
|
5
5
|
gem.name = "fluent-plugin-elapsed-time"
|
|
6
|
-
gem.version = "0.0.
|
|
6
|
+
gem.version = "0.0.9"
|
|
7
7
|
gem.authors = ["Naotoshi Seo"]
|
|
8
8
|
gem.email = "sonots@gmail.com"
|
|
9
9
|
gem.homepage = "https://github.com/sonots/fluent-plugin-elapsed-time"
|
|
10
10
|
gem.description = "Fluentd plugin to measure elapsed time to process messages"
|
|
11
11
|
gem.summary = gem.description
|
|
12
12
|
gem.licenses = ["MIT"]
|
|
13
|
-
gem.has_rdoc = false
|
|
14
13
|
|
|
15
14
|
gem.files = `git ls-files`.split("\n")
|
|
16
15
|
gem.test_files = `git ls-files -- {test,spec,features}/*`.split("\n")
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: fluent-plugin-elapsed-time
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.0.
|
|
4
|
+
version: 0.0.9
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Naotoshi Seo
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: fluentd
|
|
@@ -114,6 +113,8 @@ executables: []
|
|
|
114
113
|
extensions: []
|
|
115
114
|
extra_rdoc_files: []
|
|
116
115
|
files:
|
|
116
|
+
- ".github/dependabot.yml"
|
|
117
|
+
- ".github/workflows/test.yml"
|
|
117
118
|
- ".gitignore"
|
|
118
119
|
- ".rspec"
|
|
119
120
|
- ".travis.yml"
|
|
@@ -130,7 +131,6 @@ homepage: https://github.com/sonots/fluent-plugin-elapsed-time
|
|
|
130
131
|
licenses:
|
|
131
132
|
- MIT
|
|
132
133
|
metadata: {}
|
|
133
|
-
post_install_message:
|
|
134
134
|
rdoc_options: []
|
|
135
135
|
require_paths:
|
|
136
136
|
- lib
|
|
@@ -145,9 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
145
145
|
- !ruby/object:Gem::Version
|
|
146
146
|
version: '0'
|
|
147
147
|
requirements: []
|
|
148
|
-
|
|
149
|
-
rubygems_version: 2.5.2
|
|
150
|
-
signing_key:
|
|
148
|
+
rubygems_version: 4.0.6
|
|
151
149
|
specification_version: 4
|
|
152
150
|
summary: Fluentd plugin to measure elapsed time to process messages
|
|
153
151
|
test_files:
|