lumberjack_sidekiq 1.0.0 → 1.0.1
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/.github/workflows/continuous_integration.yml +9 -4
- data/VERSION +1 -1
- data/lib/lumberjack/sidekiq/job_logger.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5f21585d954b126f9319f5c972734eab302d903e1660ea2e165984eb4719f01b
|
4
|
+
data.tar.gz: b58e262711d98ec50a390f60038869cabe4329ca639405d0b07ba435b7859541
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b34f3b9d671b41c16acbd476725c128f0f01e3f6a6ddad0ee045d2f8102ff9f32146ec2fefccdda25c03fb6b6e51fb1cfca5379b5d58e53e122bfc1d6f4180f1
|
7
|
+
data.tar.gz: 98f05478c1e54a7cb28c276c086d3f2f441ba22278ad926fd140330f7a4db97b8b3b2a6afc1a6dfaaaafc4169cc4646133ac741c8cef1764c8b8f7576238e360
|
@@ -3,7 +3,7 @@ name: Continuous Integration
|
|
3
3
|
on:
|
4
4
|
push:
|
5
5
|
branches:
|
6
|
-
-
|
6
|
+
- main
|
7
7
|
- actions-*
|
8
8
|
tags:
|
9
9
|
- v*
|
@@ -20,23 +20,28 @@ env:
|
|
20
20
|
|
21
21
|
jobs:
|
22
22
|
build:
|
23
|
-
name:
|
23
|
+
name: build ruby-${{ matrix.ruby }} ${{ matrix.appraisal }}
|
24
24
|
runs-on: ubuntu-latest
|
25
25
|
strategy:
|
26
26
|
matrix:
|
27
27
|
include:
|
28
28
|
- ruby: "ruby"
|
29
29
|
standardrb: true
|
30
|
-
- ruby: "3.
|
30
|
+
- ruby: "3.2"
|
31
31
|
appraisal: "sidekiq_8"
|
32
32
|
- ruby: "2.7"
|
33
33
|
appraisal: "sidekiq_7"
|
34
34
|
steps:
|
35
|
-
- uses: actions/checkout@
|
35
|
+
- uses: actions/checkout@v4
|
36
36
|
- name: Set up Ruby
|
37
37
|
uses: ruby/setup-ruby@v1
|
38
38
|
with:
|
39
39
|
ruby-version: ${{ matrix.ruby}}
|
40
|
+
- name: Set Appraisal bundle
|
41
|
+
if: matrix.appraisal != ''
|
42
|
+
run: |
|
43
|
+
echo "using gemfile gemfiles/${{ matrix.appraisal }}.gemfile"
|
44
|
+
bundle config set gemfile "gemfiles/${{ matrix.appraisal }}.gemfile"
|
40
45
|
- name: Install gems
|
41
46
|
run: |
|
42
47
|
bundle install
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.1
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: lumberjack_sidekiq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Brian Durand
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-08-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: lumberjack
|