Skip to content

Commit

Permalink
Set minimum Ruby version to 3.1
Browse files Browse the repository at this point in the history
Drop all EOL Ruby versions

Close RubyMoney#1086
  • Loading branch information
tagliala committed Mar 13, 2024
1 parent 2ef600a commit 69d654b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
ruby-version: ['2.6', '2.7', '3.0', '3.1', '3.2', '3.3']
ruby-version: ['3.1', '3.2', '3.3']

steps:
- uses: actions/checkout@v4
Expand Down
2 changes: 2 additions & 0 deletions money.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ Gem::Specification.new do |s|
s.add_development_dependency "yard", "~> 0.9.11"
s.add_development_dependency "kramdown", "~> 2.3"

s.required_ruby_version = '>= 3.1'

s.files = `git ls-files -z -- config/* lib/* CHANGELOG.md LICENSE money.gemspec README.md`.split("\x0")
s.require_paths = ["lib"]

Expand Down

0 comments on commit 69d654b

Please # to comment.