From fe98637d9dc589bb553378d8f12e20e5850ef3c8 Mon Sep 17 00:00:00 2001 From: Stan Hu <stanhu@gmail.com> Date: Fri, 23 Oct 2020 13:24:27 -0700 Subject: [PATCH] Update ruby parser for Ruby v2.7.2 This eliminates the warning: ``` warning: parser/current is loading parser/ruby27, which recognizes warning: 2.7.1-compliant syntax, but you are running 2.7.2. ``` --- Gemfile.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 01ae48cb1727a..027957f347199 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -87,7 +87,7 @@ GEM asciidoctor (>= 1.5.6, < 3.0.0) asciidoctor-plantuml (0.0.12) asciidoctor (>= 1.5.6, < 3.0.0) - ast (2.4.0) + ast (2.4.1) atlassian-jwt (0.2.0) jwt (~> 2.1.0) attr_encrypted (3.1.0) @@ -830,8 +830,8 @@ GEM orm_adapter (0.5.0) os (1.0.0) parallel (1.19.1) - parser (2.7.1.2) - ast (~> 2.4.0) + parser (2.7.2.0) + ast (~> 2.4.1) parslet (1.8.2) peek (1.1.0) railties (>= 4.0.0) -- GitLab