Skip to content

Commit

Permalink
🔧 Bump Ruby required version to 2.5
Browse files Browse the repository at this point in the history
We need this because of the `keyword_init` usage when creating a `Struct`
  • Loading branch information
rafaeelaudibert committed Jul 21, 2023
1 parent 8cca597 commit 8fdba89
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:

strategy:
matrix:
ruby-version: ["3.1", "3.0", "2.7", "2.6", "2.5", "2.4", "2.3"]
ruby-version: ["3.1", "3.0", "2.7", "2.6", "2.5"]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion clock-limiter.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Gem::Specification.new do |spec|
spec.summary = 'Clock-based rate limiter which resets when the clock second/minute/etc. changes.'
spec.homepage = 'https://github.com/leadsimple/clock-limiter'
spec.license = 'MIT'
spec.required_ruby_version = Gem::Requirement.new('>= 2.3.0')
spec.required_ruby_version = Gem::Requirement.new('>= 2.5.0')

spec.metadata['homepage_uri'] = spec.homepage
spec.metadata['source_code_uri'] = 'https://github.com/leadsimple/clock-limiter'
Expand Down

0 comments on commit 8fdba89

Please sign in to comment.