Skip to content

Commit

Permalink
Make Ruby 3 min since that's what grape-swagger now specifies.
Browse files Browse the repository at this point in the history
  • Loading branch information
mscrivo committed Feb 2, 2024
1 parent a53b61b commit e8a9632
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
strategy:
fail-fast: false
matrix:
ruby-version: ['2.7','3.0', '3.1', '3.2', '3.3']
ruby-version: ['3.0', '3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v4
Expand Down
6 changes: 3 additions & 3 deletions grape-swagger-entity.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ Gem::Specification.new do |s|
s.executables = s.files.grep(%r{^exe/}) { |f| File.basename(f) }
s.require_paths = ['lib']

s.required_ruby_version = '>= 2.7'
s.add_runtime_dependency 'grape-entity', '>= 0.6.0'
s.add_runtime_dependency 'grape-swagger', '>= 1.2.0'
s.required_ruby_version = '>= 3.0'
s.add_runtime_dependency 'grape-entity', '~> 1'
s.add_runtime_dependency 'grape-swagger', '~> 2'
s.metadata['rubygems_mfa_required'] = 'true'
end

0 comments on commit e8a9632

Please sign in to comment.