Updated to Ruby 2.6.0.

[Changes](https://is.gd/MuTHWG).
This commit is contained in:
Brooke Kuhlmann
2018-12-25 11:29:03 -07:00
parent bb329535c7
commit 2d58c953e1
2 changed files with 24 additions and 1 deletions

View File

@@ -1 +1 @@
2.5.3
2.6.0

View File

@@ -12,6 +12,29 @@ jobs:
steps:
- checkout
- type: cache-restore
name: Ruby Restore
key: ruby
- run:
name: Ruby Install
command: |
curl https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.0.tar.bz2 -o ../ruby-2.6.0.tar.gz
cd ..
tar --extract --bzip2 --verbose --file ruby-2.6.0.tar.gz
cd ruby-2.6.0
./configure
make
make update-gems
make extract-gems
sudo make install
- type: cache-save
name: Ruby Store
key: ruby
paths:
- ../ruby-2.6.0
- type: cache-restore
name: Bundler Cache Restore
key: bundle-{{ checksum "Gemfile" }}