compare_linker 1.4.4 → 1.4.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 9bae334a1336c83a873958fd02d6f31fd7637bf654a9119dc7812b887957aeeb
4
- data.tar.gz: e2da7fd305c318105735b670cbe3aa1a0a4dd3233d79e2fd72cfd3a2c6d3f15e
3
+ metadata.gz: fc63fffabfc64acf95ae11c5f5b4ebd775885a85ad089bfe992a153b12432498
4
+ data.tar.gz: 52e5c167c808c94b24b2bbf61e81db6d79c7b4c01bc62ea38acd35a63cb5267d
5
5
  SHA512:
6
- metadata.gz: 38de120f6bda8fed338f6afd28c46253181f8107698af8c64d26a4f8262364c051fda12987e8296dee80eaede71b2a2fac884a2c5828949791641d1ab2cf8c1b
7
- data.tar.gz: b3c4ca050cb298579e1d290a405db09b9d0f146d8506b9ef8f01fcf7c9454e1ac3ae56ab3a4d7032c37a1f480f70a25ddfa1abffa3f85a5c4c30267402d8a5e5
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
- [![Travis Status](https://img.shields.io/travis/masutaka/compare_linker.svg?logo=travis&style=flat-square)][travisci]
3
+ [![Test](https://github.com/masutaka/compare_linker/actions/workflows/test.yml/badge.svg)][Test]
4
4
  [![License](https://img.shields.io/github/license/masutaka/compare_linker.svg?style=flat-square)][license]
5
5
  [![Gem](https://img.shields.io/gem/v/compare_linker.svg?logo=ruby&style=flat-square)][gem-link]
6
6
 
7
- [travisci]: https://travis-ci.org/masutaka/compare_linker
8
- [license]: https://github.com/masutaka/compare_linker/blob/master/LICENSE.txt
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
@@ -1,4 +1,5 @@
1
1
  require "bundler"
2
+ require "base64"
2
3
 
3
4
  class CompareLinker
4
5
  class LockfileFetcher
@@ -1,3 +1,3 @@
1
1
  class CompareLinker
2
- VERSION = "1.4.4"
2
+ VERSION = "1.4.5"
3
3
  end
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
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: 2020-03-17 00:00:00.000000000 Z
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.0.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:
data/.travis.yml DELETED
@@ -1,6 +0,0 @@
1
- language: ruby
2
- rvm:
3
- - 2.6.1
4
- - 2.5.3
5
- - 2.4.5
6
- - 2.3.8