Skip to content

Commit

Permalink
Merge pull request #5 from trln/TD-1324-ruby-3
Browse files Browse the repository at this point in the history
Add support for Ruby 3.x, revise testing matrix. Closes TD-1324.
  • Loading branch information
lfarrell authored Feb 22, 2024
2 parents ff92e87 + 0040219 commit 6a2b20e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby: ['2.6.9', '2.7.5']
ruby: ['2.7.5', '3.0', '3.1', '3.2']
name: Ruby ${{ matrix.ruby }}

steps:
Expand Down
2 changes: 1 addition & 1 deletion .rubocop.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
require: rubocop-rspec

AllCops:
TargetRubyVersion: "2.4"
TargetRubyVersion: "2.7.5"
Exclude:
- '**/bin/spring'
- '**/bin/setup'
Expand Down
2 changes: 1 addition & 1 deletion argon_call_number_search.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ require 'argon_call_number_search/version'
Gem::Specification.new do |spec|
spec.name = 'argon_call_number_search'
spec.version = ArgonCallNumberSearch::VERSION
spec.required_ruby_version = '~> 2.4'
spec.required_ruby_version = '>= 2.7.5'
spec.authors = ['Cory Lown']
spec.email = ['[email protected]']

Expand Down

0 comments on commit 6a2b20e

Please sign in to comment.