From c1d23c5b730ce638b6688766efe1bef188e9b60a Mon Sep 17 00:00:00 2001 From: Colby Swandale Date: Wed, 25 Dec 2019 23:38:25 +1100 Subject: [PATCH] add ruby 2.7 and set as default --- config/application.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/application.rb b/config/application.rb index 7194a4475..7528d5530 100644 --- a/config/application.rb +++ b/config/application.rb @@ -19,10 +19,10 @@ class Application < Rails::Application # the framework and any gems in your application. # default ruby version documentation - config.default_ruby_version = '2.6' + config.default_ruby_version = '2.7' config.ruby_versions = %w[ - 2.6 2.5 2.4 2.3 master + 2.7 2.6 2.5 2.4 2.3 master ] end end