Skip to content

Commit 4bdd45d

Browse files
committed
Fix standardrb
1 parent 85935df commit 4bdd45d

File tree

3 files changed

+36
-20
lines changed

3 files changed

+36
-20
lines changed

Gemfile.lock

Lines changed: 34 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,22 @@ GEM
2121
faraday (~> 2.0)
2222
i18n (1.12.0)
2323
concurrent-ruby (~> 1.0)
24+
json (2.7.1)
25+
language_server-protocol (3.17.0.3)
26+
lint_roller (1.1.0)
2427
minitest (5.18.0)
2528
octokit (4.25.0)
2629
faraday (>= 1, < 3)
2730
sawyer (~> 0.9)
28-
parallel (1.20.1)
29-
parser (3.0.2.0)
31+
parallel (1.24.0)
32+
parser (3.2.2.4)
3033
ast (~> 2.4.1)
34+
racc
3135
public_suffix (4.0.7)
32-
rainbow (3.0.0)
33-
regexp_parser (2.1.1)
34-
rexml (3.2.5)
36+
racc (1.7.3)
37+
rainbow (3.1.1)
38+
regexp_parser (2.8.3)
39+
rexml (3.2.6)
3540
rspec (3.10.0)
3641
rspec-core (~> 3.10.0)
3742
rspec-expectations (~> 3.10.0)
@@ -45,31 +50,42 @@ GEM
4550
diff-lcs (>= 1.2.0, < 2.0)
4651
rspec-support (~> 3.10.0)
4752
rspec-support (3.10.1)
48-
rubocop (1.18.4)
53+
rubocop (1.57.2)
54+
json (~> 2.3)
55+
language_server-protocol (>= 3.17.0)
4956
parallel (~> 1.10)
50-
parser (>= 3.0.0.0)
57+
parser (>= 3.2.2.4)
5158
rainbow (>= 2.2.2, < 4.0)
5259
regexp_parser (>= 1.8, < 3.0)
53-
rexml
54-
rubocop-ast (>= 1.8.0, < 2.0)
60+
rexml (>= 3.2.5, < 4.0)
61+
rubocop-ast (>= 1.28.1, < 2.0)
5562
ruby-progressbar (~> 1.7)
56-
unicode-display_width (>= 1.4.0, < 3.0)
57-
rubocop-ast (1.10.0)
58-
parser (>= 3.0.1.1)
59-
rubocop-performance (1.11.4)
63+
unicode-display_width (>= 2.4.0, < 3.0)
64+
rubocop-ast (1.30.0)
65+
parser (>= 3.2.1.0)
66+
rubocop-performance (1.19.1)
6067
rubocop (>= 1.7.0, < 2.0)
6168
rubocop-ast (>= 0.4.0)
62-
ruby-progressbar (1.11.0)
69+
ruby-progressbar (1.13.0)
6370
ruby2_keywords (0.0.5)
6471
sawyer (0.9.2)
6572
addressable (>= 2.3.5)
6673
faraday (>= 0.17.3, < 3)
67-
standard (1.1.7)
68-
rubocop (= 1.18.4)
69-
rubocop-performance (= 1.11.4)
74+
standard (1.32.1)
75+
language_server-protocol (~> 3.17.0.2)
76+
lint_roller (~> 1.0)
77+
rubocop (~> 1.57.2)
78+
standard-custom (~> 1.0.0)
79+
standard-performance (~> 1.2)
80+
standard-custom (1.0.2)
81+
lint_roller (~> 1.0)
82+
rubocop (~> 1.50)
83+
standard-performance (1.2.1)
84+
lint_roller (~> 1.1)
85+
rubocop-performance (~> 1.19.1)
7086
tzinfo (2.0.6)
7187
concurrent-ruby (~> 1.0)
72-
unicode-display_width (2.0.0)
88+
unicode-display_width (2.5.0)
7389
zeitwerk (2.6.7)
7490

7591
PLATFORMS

app/services/github_checks_verifier.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# frozen_string_literal: true
22

3-
require_relative "./application_service"
3+
require_relative "application_service"
44
require_relative "../errors/check_conclusion_not_allowed_error"
55
require_relative "../errors/check_never_run_error"
66
require "active_support/configurable"

entrypoint.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env ruby
2-
require_relative "./app/services/github_checks_verifier"
2+
require_relative "app/services/github_checks_verifier"
33
require "octokit"
44

55
allowed_conclusions = ENV["ALLOWED_CONCLUSIONS"]

0 commit comments

Comments
 (0)