Skip to content

Commit

Permalink
More Ruby 3.3.1 updates
Browse files Browse the repository at this point in the history
  • Loading branch information
minter committed May 8, 2024
1 parent 845d849 commit ff24ecb
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/minitest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
uses: ruby/setup-ruby@v1
with:
# Not needed with a .ruby-version file
ruby-version: 3.2.2
ruby-version: 3.3.1
# runs 'bundle install' and caches installed gems automatically
bundler-cache: true
- name: Run tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: 3.2.2
ruby-version: 3.3.1
- name: Install dependencies
run: |
sudo apt-get -yqq install libpq-dev
Expand Down
19 changes: 9 additions & 10 deletions .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ inherit_gem:

AllCops:
NewCops: enable
TargetRubyVersion: 3.2.2
TargetRubyVersion: 3.3.1
Exclude:
- 'db/**/*'
- 'script/*'
- 'bin/*'
- 'spec/*'
- 'spec/**/*'
- 'Rakefile'
- 'config/puma.rb'
- 'node_modules/**/*'
- "db/**/*"
- "script/*"
- "bin/*"
- "spec/*"
- "spec/**/*"
- "Rakefile"
- "config/puma.rb"
- "node_modules/**/*"

Style/Documentation:
Enabled: false
Expand Down Expand Up @@ -71,4 +71,3 @@ Style/HashTransformValues:
Style/StringLiterals:
Enabled: true
EnforcedStyle: double_quotes

0 comments on commit ff24ecb

Please sign in to comment.