bake-modernize 0.17.8 → 0.18.0
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
- checksums.yaml.gz.sig +0 -0
- data/bake/modernize/contributing.rb +1 -1
- data/lib/bake/modernize/version.rb +1 -1
- data/license.md +1 -1
- data/readme.md +1 -1
- data/template/actions/.github/workflows/coverage.yaml +3 -3
- data/template/actions/.github/workflows/documentation.yaml +3 -3
- data/template/actions/.github/workflows/test-external.yaml +1 -1
- data/template/actions/.github/workflows/test.yaml +1 -1
- data.tar.gz.sig +0 -0
- metadata +4 -4
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: abd345de39312e96945fb3baaefbc7f7190913f60c46fee546862d67eff4bcf7
|
|
4
|
+
data.tar.gz: 89897ab4267990c1434fa8abce7336a08ba0112410f19e2da550028684c1d5c3
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b8d46c87f1a3413e9203fb5ec62be384fd7a87518dde23ec79b8a8ed7a9a6aedcab51ae9b01c3870d7116097c73309dd1dcae5d12ef25c527a64197ebf0d7019
|
|
7
|
+
data.tar.gz: 8e33b4d3f4c223de6669a149669ef566ebf41edca73d191a821a9e6954a8725eab1716a941d9acaa6fc129b352c3fef492270bdb43c6b22f98ad77d1ecdedf45
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
|
@@ -33,7 +33,7 @@ This project uses the [Developer Certificate of Origin](https://developercertifi
|
|
|
33
33
|
|
|
34
34
|
### Contributor Covenant
|
|
35
35
|
|
|
36
|
-
This project is governed by [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.
|
|
36
|
+
This project is governed by the [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.
|
|
37
37
|
EOF
|
|
38
38
|
|
|
39
39
|
def update_contributing(readme_path)
|
data/license.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# MIT License
|
|
2
2
|
|
|
3
3
|
Copyright, 2020-2023, by Samuel Williams.
|
|
4
|
-
Copyright, 2021-
|
|
4
|
+
Copyright, 2021-2023, by Olle Jonsson.
|
|
5
5
|
|
|
6
6
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
7
7
|
of this software and associated documentation files (the "Software"), to deal
|
data/readme.md
CHANGED
|
@@ -30,4 +30,4 @@ This project uses the [Developer Certificate of Origin](https://developercertifi
|
|
|
30
30
|
|
|
31
31
|
### Contributor Covenant
|
|
32
32
|
|
|
33
|
-
This project is governed by [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.
|
|
33
|
+
This project is governed by the [Contributor Covenant](https://www.contributor-covenant.org/). All contributors and participants agree to abide by its terms.
|
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
- "3.2"
|
|
25
25
|
|
|
26
26
|
steps:
|
|
27
|
-
- uses: actions/checkout@
|
|
27
|
+
- uses: actions/checkout@v4
|
|
28
28
|
- uses: ruby/setup-ruby@v1
|
|
29
29
|
with:
|
|
30
30
|
ruby-version: ${{matrix.ruby}}
|
|
@@ -34,7 +34,7 @@ jobs:
|
|
|
34
34
|
timeout-minutes: 5
|
|
35
35
|
run: bundle exec bake test
|
|
36
36
|
|
|
37
|
-
- uses: actions/upload-artifact@
|
|
37
|
+
- uses: actions/upload-artifact@v3
|
|
38
38
|
with:
|
|
39
39
|
name: coverage-${{matrix.os}}-${{matrix.ruby}}
|
|
40
40
|
path: .covered.db
|
|
@@ -44,7 +44,7 @@ jobs:
|
|
|
44
44
|
runs-on: ubuntu-latest
|
|
45
45
|
|
|
46
46
|
steps:
|
|
47
|
-
- uses: actions/checkout@
|
|
47
|
+
- uses: actions/checkout@v4
|
|
48
48
|
- uses: ruby/setup-ruby@v1
|
|
49
49
|
with:
|
|
50
50
|
ruby-version: "3.2"
|
|
@@ -28,7 +28,7 @@ jobs:
|
|
|
28
28
|
runs-on: ubuntu-latest
|
|
29
29
|
|
|
30
30
|
steps:
|
|
31
|
-
- uses: actions/checkout@
|
|
31
|
+
- uses: actions/checkout@v4
|
|
32
32
|
|
|
33
33
|
- uses: ruby/setup-ruby@v1
|
|
34
34
|
with:
|
|
@@ -43,7 +43,7 @@ jobs:
|
|
|
43
43
|
run: bundle exec bake utopia:project:static --force no
|
|
44
44
|
|
|
45
45
|
- name: Upload documentation artifact
|
|
46
|
-
uses: actions/upload-pages-artifact@
|
|
46
|
+
uses: actions/upload-pages-artifact@v2
|
|
47
47
|
with:
|
|
48
48
|
path: docs
|
|
49
49
|
|
|
@@ -58,4 +58,4 @@ jobs:
|
|
|
58
58
|
steps:
|
|
59
59
|
- name: Deploy to GitHub Pages
|
|
60
60
|
id: deployment
|
|
61
|
-
uses: actions/deploy-pages@
|
|
61
|
+
uses: actions/deploy-pages@v3
|
data.tar.gz.sig
CHANGED
|
Binary file
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bake-modernize
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.18.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Samuel Williams
|
|
@@ -38,7 +38,7 @@ cert_chain:
|
|
|
38
38
|
Q2K9NVun/S785AP05vKkXZEFYxqG6EW012U4oLcFl5MySFajYXRYbuUpH6AY+HP8
|
|
39
39
|
voD0MPg1DssDLKwXyt1eKD/+Fq0bFWhwVM/1XiAXL7lyYUyOq24KHgQ2Csg=
|
|
40
40
|
-----END CERTIFICATE-----
|
|
41
|
-
date: 2023-
|
|
41
|
+
date: 2023-12-09 00:00:00.000000000 Z
|
|
42
42
|
dependencies:
|
|
43
43
|
- !ruby/object:Gem::Dependency
|
|
44
44
|
name: async-http
|
|
@@ -152,14 +152,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
152
152
|
requirements:
|
|
153
153
|
- - ">="
|
|
154
154
|
- !ruby/object:Gem::Version
|
|
155
|
-
version: '0'
|
|
155
|
+
version: '3.0'
|
|
156
156
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
157
157
|
requirements:
|
|
158
158
|
- - ">="
|
|
159
159
|
- !ruby/object:Gem::Version
|
|
160
160
|
version: '0'
|
|
161
161
|
requirements: []
|
|
162
|
-
rubygems_version: 3.4.
|
|
162
|
+
rubygems_version: 3.4.22
|
|
163
163
|
signing_key:
|
|
164
164
|
specification_version: 4
|
|
165
165
|
summary: Automatically modernize parts of your project/gem.
|
metadata.gz.sig
CHANGED
|
Binary file
|