mirror of
https://github.com/hashicorp/vagrant.git
synced 2026-05-28 04:36:05 -04:00
Support Ruby 4.0
This commit is contained in:
parent
b0593b6a72
commit
db15533e34
3 changed files with 3 additions and 3 deletions
2
.github/workflows/testing-skipped.yml
vendored
2
.github/workflows/testing-skipped.yml
vendored
|
|
@ -19,7 +19,7 @@ jobs:
|
|||
continue-on-error: true
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
|
||||
ruby: [ '3.1', '3.2', '3.3', '3.4', '3.5', '4.0' ]
|
||||
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
|
||||
steps:
|
||||
- name: Stubbed for skip
|
||||
|
|
|
|||
2
.github/workflows/testing.yml
vendored
2
.github/workflows/testing.yml
vendored
|
|
@ -32,7 +32,7 @@ jobs:
|
|||
continue-on-error: true
|
||||
strategy:
|
||||
matrix:
|
||||
ruby: [ '3.1', '3.2', '3.3', '3.4' ]
|
||||
ruby: [ '3.1', '3.2', '3.3', '3.4', '3.5', '4.0' ]
|
||||
name: Vagrant unit tests on Ruby ${{ matrix.ruby }}
|
||||
steps:
|
||||
- name: Code Checkout
|
||||
|
|
|
|||
|
|
@ -12,7 +12,7 @@ Gem::Specification.new do |s|
|
|||
s.summary = "Build and distribute virtualized development environments."
|
||||
s.description = "Vagrant is a tool for building and distributing virtualized development environments."
|
||||
|
||||
s.required_ruby_version = ">= 3.0", "< 3.5"
|
||||
s.required_ruby_version = ">= 3.0"
|
||||
s.required_rubygems_version = ">= 1.3.6"
|
||||
|
||||
s.add_dependency "base64", "~> 0.2.0"
|
||||
|
|
|
|||
Loading…
Reference in a new issue