activejob-traceable 0.3.6 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/rubygems.yml +35 -0
- data/.github/workflows/tests.yml +27 -0
- data/README.md +7 -1
- data/lib/activejob/traceable/version.rb +1 -1
- metadata +8 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d3c81a3ac5244fef94babd726eea3d5a6c35d0caeef4df75b31c2fca13ebaded
|
4
|
+
data.tar.gz: a4f8e4d25d9a5fc308f45d899841fd3706a4215c685bf8aee90e063f24f06c69
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4cc9155edc8a2918a1863e68e2d5db75d2ccc0e7ec2ee4d25c60d31613d3cada9fef085bc5738e39084616e5e60b569b2305ac73a759fadcaf8b1b42a8f7de64
|
7
|
+
data.tar.gz: 4bd22e1553c210ce554702de106c2aeb67deb9d08d1c77ecfe40bb255d64eab29d5d5e8faf25bbb5431e1f3581fe316463dd411aa40de7c3307bb184039ade60
|
@@ -0,0 +1,35 @@
|
|
1
|
+
name: Ruby Gem
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- master
|
7
|
+
paths:
|
8
|
+
- lib/activejob/traceable/version.rb
|
9
|
+
|
10
|
+
jobs:
|
11
|
+
build:
|
12
|
+
name: Build and publish
|
13
|
+
runs-on: ubuntu-latest
|
14
|
+
environment: master
|
15
|
+
permissions:
|
16
|
+
contents: read
|
17
|
+
packages: write
|
18
|
+
|
19
|
+
steps:
|
20
|
+
- uses: actions/checkout@v3
|
21
|
+
- name: Set up Ruby 3.2
|
22
|
+
uses: ruby/setup-ruby@v1
|
23
|
+
with:
|
24
|
+
ruby-version: 3.2.2
|
25
|
+
|
26
|
+
- name: Publish to RubyGems
|
27
|
+
run: |
|
28
|
+
mkdir -p $HOME/.gem
|
29
|
+
touch $HOME/.gem/credentials
|
30
|
+
chmod 0600 $HOME/.gem/credentials
|
31
|
+
printf -- "---\n:rubygems_api_key: ${GEM_HOST_API_KEY}\n" > $HOME/.gem/credentials
|
32
|
+
gem build *.gemspec
|
33
|
+
gem push *.gem
|
34
|
+
env:
|
35
|
+
GEM_HOST_API_KEY: "${{secrets.RUBYGEMS_AUTH_TOKEN}}"
|
@@ -0,0 +1,27 @@
|
|
1
|
+
name: Tests
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches: ["master"]
|
6
|
+
pull_request:
|
7
|
+
branches: ["master"]
|
8
|
+
|
9
|
+
permissions:
|
10
|
+
contents: read
|
11
|
+
|
12
|
+
jobs:
|
13
|
+
test:
|
14
|
+
runs-on: ubuntu-latest
|
15
|
+
strategy:
|
16
|
+
matrix:
|
17
|
+
ruby-version: ['3.0', '3.1', '3.2']
|
18
|
+
|
19
|
+
steps:
|
20
|
+
- uses: actions/checkout@v3
|
21
|
+
- name: Set up Ruby
|
22
|
+
uses: ruby/setup-ruby@v1
|
23
|
+
with:
|
24
|
+
ruby-version: ${{ matrix.ruby-version }}
|
25
|
+
bundler-cache: true # runs 'bundle install' and caches installed gems automatically
|
26
|
+
- name: Run tests
|
27
|
+
run: bundle exec rake
|
data/README.md
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
![Gem Version](https://badge.fury.io/rb/activejob-traceable.svg) ![CI Status](https://github.com/qonto/activejob-traceable/actions/workflows/tests.yml/badge.svg)
|
2
|
+
|
1
3
|
# ActiveJob::Traceable
|
2
4
|
|
3
5
|
Patches ActiveJob to add attribute `tracing_info`, which is added as log's tag.
|
@@ -47,7 +49,7 @@ Once configured, works out of the box.
|
|
47
49
|
|
48
50
|
After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests.
|
49
51
|
|
50
|
-
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version,
|
52
|
+
To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, make sure you updated the version number in `version.rb`, and then create a new release and tag from github.
|
51
53
|
|
52
54
|
## Contributing
|
53
55
|
|
@@ -56,3 +58,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/qonto/
|
|
56
58
|
## License
|
57
59
|
|
58
60
|
The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
|
61
|
+
|
62
|
+
# Releasing
|
63
|
+
|
64
|
+
To publish a new version to rubygems, update the version in `lib/activejob/traceable/version.rb`, and merge.
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: activejob-traceable
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.4.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Qonto team
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-06-
|
11
|
+
date: 2023-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activejob
|
@@ -94,13 +94,15 @@ dependencies:
|
|
94
94
|
- - "~>"
|
95
95
|
- !ruby/object:Gem::Version
|
96
96
|
version: '3.8'
|
97
|
-
description:
|
97
|
+
description:
|
98
98
|
email:
|
99
99
|
- backend@qonto.eu
|
100
100
|
executables: []
|
101
101
|
extensions: []
|
102
102
|
extra_rdoc_files: []
|
103
103
|
files:
|
104
|
+
- ".github/workflows/rubygems.yml"
|
105
|
+
- ".github/workflows/tests.yml"
|
104
106
|
- ".gitignore"
|
105
107
|
- ".rspec"
|
106
108
|
- ".travis.yml"
|
@@ -117,7 +119,7 @@ homepage: https://github.com/qonto/activejob-traceable
|
|
117
119
|
licenses:
|
118
120
|
- MIT
|
119
121
|
metadata: {}
|
120
|
-
post_install_message:
|
122
|
+
post_install_message:
|
121
123
|
rdoc_options: []
|
122
124
|
require_paths:
|
123
125
|
- lib
|
@@ -133,7 +135,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
133
135
|
version: '0'
|
134
136
|
requirements: []
|
135
137
|
rubygems_version: 3.4.10
|
136
|
-
signing_key:
|
138
|
+
signing_key:
|
137
139
|
specification_version: 4
|
138
140
|
summary: Patches ActiveJob to add trace_id attribute.
|
139
141
|
test_files: []
|