Skip to content

Commit 63bc8a9

Browse files
committed
Remove support for Ruby 3.0 (because EOL)
1 parent 77ed9a4 commit 63bc8a9

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
strategy:
1010
fail-fast: false
1111
matrix:
12-
ruby: ['3.0', '3.1', '3.2', '3.3']
12+
ruby: ['3.1', '3.2', '3.3']
1313
rails: ['6.1', '7.0', '7.1', '7.2', '8.0']
1414
exclude:
1515
- ruby: 3.1

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ This Ruby gem provides a double entry accounting system for use in any Rails app
1919

2020
## Dependencies
2121

22-
* Ruby 3.0+
22+
* Ruby 3.1+
2323
* Rails 6.1+ (including Rails 8.0)
2424

2525
## Installation

keepr.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
1313
spec.summary = 'Some basic ActiveRecord models to build a double entry bookkeeping application'
1414
spec.homepage = 'https://github.com/ledermann/keepr'
1515
spec.license = 'MIT'
16-
spec.required_ruby_version = '>= 3.0'
16+
spec.required_ruby_version = '>= 3.1'
1717

1818
spec.files = `git ls-files`.split($INPUT_RECORD_SEPARATOR)
1919
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }

0 commit comments

Comments
 (0)