Updated to Ruby 3.0.0

Includes temporary disablement of gem dependencies that require
updating to Ruby 3.0.0 first.

[Details](https://chl.li/LdWrE).
This commit is contained in:
Brooke Kuhlmann
2020-12-29 08:44:34 -07:00
parent e6f991baca
commit f8a779e926
4 changed files with 6 additions and 6 deletions

View File

@@ -1 +1 @@
2.7.2 3.0.0

View File

@@ -3,4 +3,4 @@
source "https://rubygems.org" source "https://rubygems.org"
gem "rake", "~> 13.0" gem "rake", "~> 13.0"
gem "git-lint", "~> 1.3" # gem "git-lint", "~> 1.4"

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true # frozen_string_literal: true
require "git/lint/rake/setup" # require "git/lint/rake/setup"
task default: :git_lint # task default: :git_lint

View File

@@ -24,9 +24,9 @@ jobs:
- run: - run:
name: Ruby Install name: Ruby Install
command: | command: |
curl https://cache.ruby-lang.org/pub/ruby/${CI_RUBY_VERSION::-2}/ruby-$CI_RUBY_VERSION.tar.bz2 > ../ruby-$CI_RUBY_VERSION.tar.gz
cd .. cd ..
tar --extract --bzip2 --verbose --file ruby-$CI_RUBY_VERSION.tar.gz curl https://cache.ruby-lang.org/pub/ruby/${CI_RUBY_VERSION::-2}/ruby-$CI_RUBY_VERSION.tar.gz > ruby-$CI_RUBY_VERSION.tar.gz
tar --extract --gzip --verbose --file ruby-$CI_RUBY_VERSION.tar.gz
cd ruby-$CI_RUBY_VERSION cd ruby-$CI_RUBY_VERSION
./configure ./configure
make make