Skip to content

Commit

Permalink
Upgrade to Ruby 2.6.5 (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
larouxn authored and sojan-official committed Nov 18, 2019
1 parent 9256745 commit 0aee334
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .ruby-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.6.3
2.6.5
2 changes: 1 addition & 1 deletion Gemfile
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ DEPENDENCIES
wisper (= 2.0.0)

RUBY VERSION
ruby 2.6.3p62
ruby 2.6.5p114

BUNDLED WITH
1.17.3
8 changes: 4 additions & 4 deletions docs/development/environment-setup/mac-os.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions docs/development/environment-setup/ubuntu.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 0aee334

Please sign in to comment.