compare_linker 1.4.4 → 1.4.5
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/dependabot.yml +11 -0
- data/.github/workflows/pushover.yml +20 -0
- data/.github/workflows/test.yml +48 -0
- data/README.md +3 -3
- data/lib/compare_linker/lockfile_fetcher.rb +1 -0
- data/lib/compare_linker/version.rb +1 -1
- metadata +9 -7
- data/.travis.yml +0 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: fc63fffabfc64acf95ae11c5f5b4ebd775885a85ad089bfe992a153b12432498
|
4
|
+
data.tar.gz: 52e5c167c808c94b24b2bbf61e81db6d79c7b4c01bc62ea38acd35a63cb5267d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7874f494a8957094899656edb1588cfe66f8958d19e55c5eba7cec9a917b61f8b574e7ccb0fa85970f64770a3406b674e4785ae191a7c9b0cf33e1aa8cca136c
|
7
|
+
data.tar.gz: a7dd37d94699afcf549f5c0bf3b9e2dfe3e5d61f7a5d0faf479f338e21453b800a3c975588d8fc7e60777d5ddd4c2882093e07c58ff70036484609a3f9b20e31
|
@@ -0,0 +1,11 @@
|
|
1
|
+
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file
|
2
|
+
version: 2
|
3
|
+
updates:
|
4
|
+
- package-ecosystem: "github-actions"
|
5
|
+
directory: "/"
|
6
|
+
schedule:
|
7
|
+
interval: "monthly"
|
8
|
+
time: "19:00"
|
9
|
+
timezone: "Asia/Tokyo"
|
10
|
+
assignees:
|
11
|
+
- "masutaka"
|
@@ -0,0 +1,20 @@
|
|
1
|
+
name: Pushover
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_call:
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
pushover:
|
8
|
+
runs-on: ubuntu-latest
|
9
|
+
timeout-minutes: 5
|
10
|
+
steps:
|
11
|
+
- name: pushover-actions
|
12
|
+
uses: umahmood/pushover-actions@5da31193f672e7418804bdb51836bdf20f393c8f # v1.1.0
|
13
|
+
env:
|
14
|
+
PUSHOVER_TOKEN: ${{ secrets.PUSHOVER_API_KEY }}
|
15
|
+
PUSHOVER_USER: ${{ secrets.PUSHOVER_USER_KEY }}
|
16
|
+
with:
|
17
|
+
status: "failure"
|
18
|
+
title: "Failed ${{ github.event.repository.full_name }}'s workflow (${{ github.workflow }})"
|
19
|
+
url: "${{ github.server_url }}/${{ github.event.repository.full_name }}/actions/runs/${{ github.run_id }}"
|
20
|
+
priority: 1 # High
|
@@ -0,0 +1,48 @@
|
|
1
|
+
name: Test
|
2
|
+
|
3
|
+
on:
|
4
|
+
push:
|
5
|
+
branches:
|
6
|
+
- main
|
7
|
+
pull_request:
|
8
|
+
|
9
|
+
jobs:
|
10
|
+
actionlint:
|
11
|
+
runs-on: ubuntu-latest
|
12
|
+
timeout-minutes: 5
|
13
|
+
permissions:
|
14
|
+
checks: write
|
15
|
+
contents: read
|
16
|
+
pull-requests: write
|
17
|
+
steps:
|
18
|
+
- uses: actions/checkout@v4
|
19
|
+
- name: Run actionlint
|
20
|
+
uses: reviewdog/action-actionlint@fd627997c9688c2f39e13917aed23873c031b834 # v1.48.0
|
21
|
+
with:
|
22
|
+
fail_on_error: true
|
23
|
+
filter_mode: nofilter
|
24
|
+
level: error
|
25
|
+
reporter: github-pr-review
|
26
|
+
rspec:
|
27
|
+
runs-on: ubuntu-latest
|
28
|
+
timeout-minutes: 5
|
29
|
+
strategy:
|
30
|
+
matrix:
|
31
|
+
ruby-version:
|
32
|
+
- '3.0'
|
33
|
+
- '3.1'
|
34
|
+
- '3.2'
|
35
|
+
- '3.3'
|
36
|
+
steps:
|
37
|
+
- uses: actions/checkout@v4
|
38
|
+
- uses: ruby/setup-ruby@v1
|
39
|
+
with:
|
40
|
+
ruby-version: ${{ matrix.ruby-version }}
|
41
|
+
bundler-cache: true
|
42
|
+
- name: Run rspec
|
43
|
+
run: bundle exec rake spec
|
44
|
+
pushover:
|
45
|
+
name: pushover if failure
|
46
|
+
if: github.ref_name == github.event.repository.default_branch && failure()
|
47
|
+
needs: [actionlint, rspec]
|
48
|
+
uses: ./.github/workflows/pushover.yml
|
data/README.md
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
# Compare Linker
|
2
2
|
|
3
|
-
[][Test]
|
4
4
|
[][license]
|
5
5
|
[][gem-link]
|
6
6
|
|
7
|
-
[
|
8
|
-
[license]: https://github.com/masutaka/compare_linker/blob/
|
7
|
+
[Test]: https://github.com/masutaka/compare_linker/actions/workflows/test.yml?query=branch%3Amain
|
8
|
+
[license]: https://github.com/masutaka/compare_linker/blob/main/LICENSE.txt
|
9
9
|
[gem-link]: http://badge.fury.io/rb/compare_linker
|
10
10
|
|
11
11
|
## Description
|
metadata
CHANGED
@@ -1,15 +1,15 @@
|
|
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.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Takashi Masuda
|
8
8
|
- Kensuke Nagae
|
9
|
-
autorequire:
|
9
|
+
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-06-16 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: octokit
|
@@ -103,9 +103,11 @@ executables: []
|
|
103
103
|
extensions: []
|
104
104
|
extra_rdoc_files: []
|
105
105
|
files:
|
106
|
+
- ".github/dependabot.yml"
|
107
|
+
- ".github/workflows/pushover.yml"
|
108
|
+
- ".github/workflows/test.yml"
|
106
109
|
- ".gitignore"
|
107
110
|
- ".rspec"
|
108
|
-
- ".travis.yml"
|
109
111
|
- Gemfile
|
110
112
|
- LICENSE.txt
|
111
113
|
- README.md
|
@@ -141,7 +143,7 @@ homepage: https://github.com/masutaka/compare_linker
|
|
141
143
|
licenses:
|
142
144
|
- MIT
|
143
145
|
metadata: {}
|
144
|
-
post_install_message:
|
146
|
+
post_install_message:
|
145
147
|
rdoc_options: []
|
146
148
|
require_paths:
|
147
149
|
- lib
|
@@ -156,8 +158,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
156
158
|
- !ruby/object:Gem::Version
|
157
159
|
version: '0'
|
158
160
|
requirements: []
|
159
|
-
rubygems_version: 3.
|
160
|
-
signing_key:
|
161
|
+
rubygems_version: 3.5.3
|
162
|
+
signing_key:
|
161
163
|
specification_version: 4
|
162
164
|
summary: Create GitHub's compare view URLs for pull request
|
163
165
|
test_files:
|