Skip to content

Commit

Permalink
Aligns ruby version with other gems.
Browse files Browse the repository at this point in the history
- min version is now: 3.0
- add 3.3 to CI
  • Loading branch information
LeFnord committed Apr 10, 2024
1 parent f9e9e43 commit 032f64c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v4
- uses: ruby/setup-ruby@v1
with:
ruby-version: '3.2'
ruby-version: '3.3'
bundler-cache: true
- name: Run rubocop
run: bundle exec rubocop --parallel --format progress
Expand All @@ -28,7 +28,7 @@ jobs:
needs: ['rubocop']
strategy:
matrix:
ruby-version: ['3.0', '3.1', '3.2', '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-entity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Gem::Specification.new do |s|
s.description = 'Extracted from Grape, A Ruby framework for rapid API development with great conventions.'
s.license = 'MIT'

s.required_ruby_version = '>= 2.7'
s.required_ruby_version = '>= 3.0'

s.add_runtime_dependency 'activesupport', '>= 3.0.0'
# FIXME: remove dependecy
Expand Down

0 comments on commit 032f64c

Please sign in to comment.