Skip to content

Commit c1d2437

Browse files
committed
support ruby version is >= 3.2
1 parent 886e35a commit c1d2437

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
runs-on: ubuntu-latest
2323
strategy:
2424
matrix:
25-
ruby-version: ['3.1', '3.2', '3.3', '3.4']
25+
ruby-version: ['3.2', '3.3', '3.4']
2626

2727
steps:
2828
- uses: actions/checkout@v4

restful_error.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require "restful_error/version"
77
Gem::Specification.new do |spec|
88
spec.name = "restful_error"
99
spec.version = RestfulError::VERSION
10-
spec.required_ruby_version = ">= 3.1"
10+
spec.required_ruby_version = ">= 3.2"
1111
spec.authors = [ "kuboon" ]
1212
spec.email = [ "o@kbn.one" ]
1313
spec.summary = "Define your error with status code. Raise it and you will get formatted response with i18nized message."

0 commit comments

Comments
 (0)