Skip to content

Commit

Permalink
Restore support for Ruby 3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lin Jen-Shin committed Jan 2, 2024
1 parent 8aa342c commit 65f717c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
GRAPE_VERSION: '1.7.1'
strategy:
matrix:
ruby-version: ['3.1', '3.2', '3.3', 'head']
ruby-version: ['3.0', 3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
GRAPE_VERSION: '1.8.0'
strategy:
matrix:
ruby-version: ['3.1', '3.2', '3.3', 'head']
ruby-version: ['3.0', 3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -94,7 +94,7 @@ jobs:
GRAPE_VERSION: '2.0.0'
strategy:
matrix:
ruby-version: ['3.1', '3.2', '3.3', 'head']
ruby-version: ['3.0', 3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
GRAPE_VERSION: 'HEAD'
strategy:
matrix:
ruby-version: ['3.1', '3.2', '3.3', 'head']
ruby-version: ['3.0', 3.1', '3.2', '3.3', 'head']
steps:
- name: Check out branch
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion grape-swagger.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|

s.metadata['rubygems_mfa_required'] = 'true'

s.required_ruby_version = '>= 3.1'
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'grape', '>= 1.7', '< 3.0'
s.add_runtime_dependency 'rack-test', '~> 2'

Expand Down

0 comments on commit 65f717c

Please sign in to comment.