From 0aee33453c5597c314e1fd729338f22cc32844f7 Mon Sep 17 00:00:00 2001 From: Nicholas La Roux Date: Mon, 18 Nov 2019 11:37:48 +0800 Subject: [PATCH] Upgrade to Ruby 2.6.5 (#216) --- .circleci/config.yml | 2 +- .ruby-version | 2 +- Gemfile | 2 +- Gemfile.lock | 2 +- docs/development/environment-setup/mac-os.md | 8 ++++---- docs/development/environment-setup/ubuntu.md | 8 ++++---- 6 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6b9c2ade0..41247df35 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -7,7 +7,7 @@ jobs: build: docker: # specify the version you desire here - - image: circleci/ruby:2.6.3-node-browsers + - image: circleci/ruby:2.6.5-node-browsers # Specify service dependencies here if necessary # CircleCI maintains a library of pre-built images diff --git a/.ruby-version b/.ruby-version index ec1cf33c3..57cf282eb 100644 --- a/.ruby-version +++ b/.ruby-version @@ -1 +1 @@ -2.6.3 +2.6.5 diff --git a/Gemfile b/Gemfile index 71fec6950..7f0086372 100644 --- a/Gemfile +++ b/Gemfile @@ -1,6 +1,6 @@ source 'https://rubygems.org' -ruby '2.6.3' +ruby '2.6.5' ##-- base gems for rails --## gem 'rack-cors', require: 'rack/cors' diff --git a/Gemfile.lock b/Gemfile.lock index b7ee0b3e4..4603d0593 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -510,7 +510,7 @@ DEPENDENCIES wisper (= 2.0.0) RUBY VERSION - ruby 2.6.3p62 + ruby 2.6.5p114 BUNDLED WITH 1.17.3 diff --git a/docs/development/environment-setup/mac-os.md b/docs/development/environment-setup/mac-os.md index ecab84b08..3ccd1e325 100644 --- a/docs/development/environment-setup/mac-os.md +++ b/docs/development/environment-setup/mac-os.md @@ -37,16 +37,16 @@ source ~/.rvm/scripts/rvm ### Install Ruby -Chatwoot APIs are built on Ruby on Rails, you need install ruby 2.6.3 +Chatwoot APIs are built on Ruby on Rails, you need install ruby 2.6.5 ```bash -rvm install ruby-2.6.3 +rvm install ruby-2.6.5 ``` -Use ruby 2.6.3 as default +Use ruby 2.6.5 as default ```bash -rvm use 2.6.3 --default +rvm use 2.6.5 --default ``` ### Install Node.js diff --git a/docs/development/environment-setup/ubuntu.md b/docs/development/environment-setup/ubuntu.md index 47878a5b2..b8601945e 100644 --- a/docs/development/environment-setup/ubuntu.md +++ b/docs/development/environment-setup/ubuntu.md @@ -33,16 +33,16 @@ Enable `Run command as a login shell` in terminal `Preferences`. Restart your co ### Install Ruby -Chatwoot APIs are built on Ruby on Rails, you need install ruby 2.6.3 +Chatwoot APIs are built on Ruby on Rails, you need install ruby 2.6.5 ```bash -rvm install ruby-2.6.3 +rvm install ruby-2.6.5 ``` -Use ruby 2.6.3 as default +Use ruby 2.6.5 as default ```bash -rvm use 2.6.3 --default +rvm use 2.6.5 --default ``` ### Install Node.js