Skip to content

Commit

Permalink
Bump rubocop version and add missing actions checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
meatball133 committed Nov 11, 2024
1 parent e1c69f4 commit 79b00d1
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 20 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/generator-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,10 @@ on:

jobs:
test-generator-templates:
name: Test Generator
name: Check Generator Templates
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- name: Set up Ruby
uses: ruby/setup-ruby@52753b7da854d5c07df37391a986c76ab4615999
with:
Expand All @@ -20,7 +21,7 @@ jobs:
- name: Verify templates
run: ruby ./bin/generate --verify
test-generator:
name: Check Generator Templates
name: Test Generator
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
Expand Down
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ gem 'base64'
gem 'minitest'
gem 'rake'
gem 'mocha', require: false
gem 'rubocop', '~> 1.50.0', require: false
gem 'rubocop', '~> 1.68.0', require: false
gem 'rubocop-minitest', require: false
gem 'rubocop-rake', require: false
gem 'simplecov', require: false
Expand Down
31 changes: 15 additions & 16 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,34 @@ GEM
remote: https://rubygems.org/
specs:
ast (2.4.2)
citrus (3.0.2)
base64 (0.2.0)
citrus (3.0.2)
docile (1.4.0)
json (2.7.2)
json (2.8.1)
language_server-protocol (3.17.0.3)
minitest (5.22.3)
mocha (2.1.0)
ruby2_keywords (>= 0.0.5)
parallel (1.24.0)
parser (3.3.0.5)
parallel (1.26.3)
parser (3.3.6.0)
ast (~> 2.4.1)
racc
racc (1.7.3)
rainbow (3.1.1)
rake (13.2.1)
regexp_parser (2.9.0)
rexml (3.3.9)
rubocop (1.50.2)
regexp_parser (2.9.2)
rubocop (1.68.0)
json (~> 2.3)
language_server-protocol (>= 3.17.0)
parallel (~> 1.10)
parser (>= 3.2.0.0)
parser (>= 3.3.0.2)
rainbow (>= 2.2.2, < 4.0)
regexp_parser (>= 1.8, < 3.0)
rexml (>= 3.2.5, < 4.0)
rubocop-ast (>= 1.28.0, < 2.0)
regexp_parser (>= 2.4, < 3.0)
rubocop-ast (>= 1.32.2, < 2.0)
ruby-progressbar (~> 1.7)
unicode-display_width (>= 2.4.0, < 3.0)
rubocop-ast (1.31.2)
parser (>= 3.3.0.4)
rubocop-ast (1.34.1)
parser (>= 3.3.1.0)
rubocop-minitest (0.34.5)
rubocop (>= 1.39, < 2.0)
rubocop-ast (>= 1.30.0, < 2.0)
Expand All @@ -43,11 +43,10 @@ GEM
simplecov_json_formatter (~> 0.1)
simplecov-html (0.12.3)
simplecov_json_formatter (0.1.4)
strscan (3.1.0)
toml-rb (3.0.1)
citrus (~> 3.0, > 3.0)
racc (~> 1.7)
unicode-display_width (2.5.0)
unicode-display_width (2.6.0)

PLATFORMS
ruby
Expand All @@ -58,7 +57,7 @@ DEPENDENCIES
mocha
racc
rake
rubocop (~> 1.50.0)
rubocop (~> 1.68.0)
rubocop-minitest
rubocop-rake
simplecov
Expand Down
2 changes: 1 addition & 1 deletion exercises/practice/acronym/acronym_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def test_punctuation_without_whitespace
def test_very_long_abbreviation
skip
assert_equal 'ROTFLSHTMDCOALM',
Acronym.abbreviate('Rolling On The Floor Laughing So Hard That My Dogs Came Over And Licked Me')
Acronym.abbreviate('Rolling On The Floor Laughing So Hard That My Dogs Came Over And Licked Me')
end

def test_consecutive_delimiters
Expand Down

0 comments on commit 79b00d1

Please sign in to comment.