activejob-traceable 0.4.0 → 0.4.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/rubygems.yml +20 -17
- data/README.md +4 -0
- data/lib/activejob/traceable/version.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: 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
|
|
@@ -2,31 +2,34 @@ name: Ruby Gem
|
|
|
2
2
|
|
|
3
3
|
on:
|
|
4
4
|
push:
|
|
5
|
-
|
|
6
|
-
-
|
|
5
|
+
branches:
|
|
6
|
+
- master
|
|
7
|
+
paths:
|
|
8
|
+
- lib/activejob/traceable/version.rb
|
|
7
9
|
|
|
8
10
|
jobs:
|
|
9
11
|
build:
|
|
10
12
|
name: Build and publish
|
|
11
13
|
runs-on: ubuntu-latest
|
|
14
|
+
environment: master
|
|
12
15
|
permissions:
|
|
13
16
|
contents: read
|
|
14
17
|
packages: write
|
|
15
18
|
|
|
16
19
|
steps:
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
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
|
|
22
25
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
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}}"
|
data/README.md
CHANGED
|
@@ -58,3 +58,7 @@ Bug reports and pull requests are welcome on GitHub at https://github.com/qonto/
|
|
|
58
58
|
## License
|
|
59
59
|
|
|
60
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.
|
|
4
|
+
version: 0.4.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Qonto team
|
|
8
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
|