Skip to content

Commit

Permalink
Remove support for Ruby 2.x
Browse files Browse the repository at this point in the history
  • Loading branch information
pabloh committed Aug 6, 2024
1 parent 9fe850e commit 830ed9e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: [2.6, 2.7, 3.0, 3.1, 3.2, 3.3]
ruby-version: [3.0, 3.1, 3.2, 3.3]
steps:
- uses: actions/checkout@v3
- name: Set up Ruby
Expand All @@ -23,7 +23,7 @@ jobs:
- name: Run tests
run: bundle exec rake
- name: Coveralls GitHub Action
if: matrix.ruby-version == '3.2'
if: matrix.ruby-version == '3.3'
uses: coverallsapp/github-action@v2
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion pathway.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Gem::Specification.new do |spec|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
spec.require_paths = ["lib"]

spec.required_ruby_version = ">= 2.4.0"
spec.required_ruby_version = ">= 3.0.0"

spec.add_dependency "dry-inflector", ">= 0.1.0"
spec.add_dependency "contextualizer", "~> 0.0.4"
Expand Down

0 comments on commit 830ed9e

Please sign in to comment.