compare_linker 1.4.7 → 1.4.8
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/schedule.yml +24 -0
- data/.github/workflows/test.yml +9 -2
- data/README.md +6 -6
- data/compare_linker.gemspec +1 -0
- data/lib/compare_linker/version.rb +1 -1
- metadata +18 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 8f09d77eb2d984238bb9d4c266fffa321df5fed3e6c327cb1548a1ece8888fa3
|
|
4
|
+
data.tar.gz: 4797828bba63fe4fb94b4278e0788486e116f3ca723a71870c689fa62f2bc98d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a285fba6c45c4d0f1203c527346f6c3d68b7256f18b56729f3f091cde69d60eb43326bbe31ebbc6b6a72a82a2e3966c7840cc6e4a812b40d1ddef1a9052bad2b
|
|
7
|
+
data.tar.gz: d13271f54f9e017ff366e2abfd978f98c0e2e47ed80e13ac7b58f09128964814ab9d942451c694ffa74b39c2f6feebc13d52464f7f3d7ba8bec7795355d576e3
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
name: Schedule
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: "00 10 * * 5" # every friday 19:00 JST
|
|
6
|
+
|
|
7
|
+
jobs:
|
|
8
|
+
codeql:
|
|
9
|
+
permissions:
|
|
10
|
+
actions: read
|
|
11
|
+
checks: read
|
|
12
|
+
contents: read
|
|
13
|
+
security-events: write
|
|
14
|
+
uses: route06/actions/.github/workflows/codeql_core.yml@9e45172619c61b4bafec4eddde0872fb3947c190 # v2.4.1
|
|
15
|
+
with:
|
|
16
|
+
language: "ruby"
|
|
17
|
+
pushover:
|
|
18
|
+
name: pushover if failure
|
|
19
|
+
if: github.ref_name == github.event.repository.default_branch && failure()
|
|
20
|
+
needs: codeql
|
|
21
|
+
uses: ./.github/workflows/pushover.yml
|
|
22
|
+
secrets:
|
|
23
|
+
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
|
|
24
|
+
PUSHOVER_USER_KEY: ${{ secrets.PUSHOVER_USER_KEY }}
|
data/.github/workflows/test.yml
CHANGED
|
@@ -17,12 +17,19 @@ jobs:
|
|
|
17
17
|
steps:
|
|
18
18
|
- uses: actions/checkout@v4
|
|
19
19
|
- name: Run actionlint
|
|
20
|
-
uses: reviewdog/action-actionlint@
|
|
20
|
+
uses: reviewdog/action-actionlint@7eeec1dd160c2301eb28e1568721837d084558ad # v1.57.0
|
|
21
21
|
with:
|
|
22
22
|
fail_on_error: true
|
|
23
23
|
filter_mode: nofilter
|
|
24
24
|
level: error
|
|
25
25
|
reporter: github-pr-review
|
|
26
|
+
codeql:
|
|
27
|
+
permissions:
|
|
28
|
+
actions: read
|
|
29
|
+
checks: read
|
|
30
|
+
contents: read
|
|
31
|
+
security-events: write
|
|
32
|
+
uses: route06/actions/.github/workflows/codeql.yml@9e45172619c61b4bafec4eddde0872fb3947c190 # v2.4.1
|
|
26
33
|
rspec:
|
|
27
34
|
runs-on: ubuntu-latest
|
|
28
35
|
timeout-minutes: 5
|
|
@@ -44,7 +51,7 @@ jobs:
|
|
|
44
51
|
pushover:
|
|
45
52
|
name: pushover if failure
|
|
46
53
|
if: github.ref_name == github.event.repository.default_branch && failure()
|
|
47
|
-
needs: [actionlint, rspec]
|
|
54
|
+
needs: [actionlint, codeql, rspec]
|
|
48
55
|
uses: ./.github/workflows/pushover.yml
|
|
49
56
|
secrets:
|
|
50
57
|
PUSHOVER_API_KEY: ${{ secrets.PUSHOVER_API_KEY }}
|
data/README.md
CHANGED
|
@@ -1,13 +1,9 @@
|
|
|
1
1
|
# Compare Linker
|
|
2
2
|
|
|
3
3
|
[][test]
|
|
4
|
-
[][codeql]
|
|
5
|
-
[][license]
|
|
6
4
|
[][gem]
|
|
7
5
|
|
|
8
6
|
[test]: https://github.com/masutaka/compare_linker/actions/workflows/test.yml?query=branch%3Amain
|
|
9
|
-
[codeql]: https://github.com/masutaka/compare_linker/actions/workflows/github-code-scanning/codeql?query=branch%3Amain
|
|
10
|
-
[license]: https://github.com/masutaka/compare_linker/blob/main/LICENSE.txt
|
|
11
7
|
[gem]: https://rubygems.org/gems/compare_linker
|
|
12
8
|
|
|
13
9
|
## Description
|
|
@@ -65,6 +61,10 @@ To install this gem onto your local machine, run `bundle exec rake install`. To
|
|
|
65
61
|
|
|
66
62
|
Bug reports and pull requests are welcome on GitHub at https://github.com/masutaka/compare_linker. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
|
|
67
63
|
|
|
68
|
-
##
|
|
64
|
+
## Contributors
|
|
69
65
|
|
|
70
|
-
|
|
66
|
+
<a href="https://github.com/masutaka/compare_linker/graphs/contributors">
|
|
67
|
+
<img src="https://contrib.rocks/image?repo=masutaka/compare_linker" />
|
|
68
|
+
</a>
|
|
69
|
+
|
|
70
|
+
*Made with [contrib.rocks](https://contrib.rocks).*
|
data/compare_linker.gemspec
CHANGED
|
@@ -21,6 +21,7 @@ Gem::Specification.new do |spec|
|
|
|
21
21
|
spec.add_dependency "base64"
|
|
22
22
|
spec.add_dependency "httpclient"
|
|
23
23
|
spec.add_dependency "octokit"
|
|
24
|
+
spec.add_dependency "ostruct"
|
|
24
25
|
|
|
25
26
|
spec.add_development_dependency "activesupport", ">= 5.0.0", "< 7.2.0" # temporary pinned. See https://github.com/masutaka/compare_linker/pull/50
|
|
26
27
|
spec.add_development_dependency "bundler", ">= 1.3"
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: compare_linker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.4.
|
|
4
|
+
version: 1.4.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Takashi Masuda
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2024-
|
|
12
|
+
date: 2024-10-02 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: base64
|
|
@@ -53,6 +53,20 @@ dependencies:
|
|
|
53
53
|
- - ">="
|
|
54
54
|
- !ruby/object:Gem::Version
|
|
55
55
|
version: '0'
|
|
56
|
+
- !ruby/object:Gem::Dependency
|
|
57
|
+
name: ostruct
|
|
58
|
+
requirement: !ruby/object:Gem::Requirement
|
|
59
|
+
requirements:
|
|
60
|
+
- - ">="
|
|
61
|
+
- !ruby/object:Gem::Version
|
|
62
|
+
version: '0'
|
|
63
|
+
type: :runtime
|
|
64
|
+
prerelease: false
|
|
65
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
66
|
+
requirements:
|
|
67
|
+
- - ">="
|
|
68
|
+
- !ruby/object:Gem::Version
|
|
69
|
+
version: '0'
|
|
56
70
|
- !ruby/object:Gem::Dependency
|
|
57
71
|
name: activesupport
|
|
58
72
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -139,6 +153,7 @@ extra_rdoc_files: []
|
|
|
139
153
|
files:
|
|
140
154
|
- ".github/dependabot.yml"
|
|
141
155
|
- ".github/workflows/pushover.yml"
|
|
156
|
+
- ".github/workflows/schedule.yml"
|
|
142
157
|
- ".github/workflows/test.yml"
|
|
143
158
|
- ".gitignore"
|
|
144
159
|
- ".rspec"
|
|
@@ -192,7 +207,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
192
207
|
- !ruby/object:Gem::Version
|
|
193
208
|
version: '0'
|
|
194
209
|
requirements: []
|
|
195
|
-
rubygems_version: 3.5.
|
|
210
|
+
rubygems_version: 3.5.16
|
|
196
211
|
signing_key:
|
|
197
212
|
specification_version: 4
|
|
198
213
|
summary: Create GitHub's compare view URLs for pull request
|