Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64
- uses: ruby/setup-ruby@9eb537ca036ebaed86729dcb9309076e4c5c3b74
with:
bundler-cache: true
- run: bundle exec rubocop
test:
strategy:
matrix:
ruby: [3.2, 3.3, 3.4, 4.0]
ruby: [3.3, 3.4, 4.0]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ruby/setup-ruby@3ff19f5e2baf30647122352b96108b1fbe250c64
- uses: ruby/setup-ruby@9eb537ca036ebaed86729dcb9309076e4c5c3b74
with:
bundler-cache: true
ruby-version: ${{ matrix.ruby }}
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ plugins:

AllCops:
NewCops: enable
TargetRubyVersion: 3.2
TargetRubyVersion: 3.3
Layout/LineLength:
Max: 120
Metrics/BlockLength:
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.0.0
4.0.5
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@ DEPENDENCIES
simplecov (~> 0.22)

BUNDLED WITH
4.0.3
4.0.15
2 changes: 1 addition & 1 deletion awrence.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
spec.license = "MIT"
spec.metadata["rubygems_mfa_required"] = "true"
spec.name = "awrence"
spec.required_ruby_version = ">= 3.2"
spec.required_ruby_version = ">= 3.3"
spec.summary = "Camelize your snake keys when working with JSON APIs"
spec.version = Awrence::VERSION
end