From 6c36abdca739c688ce640559d53fcb1750f33ab4 Mon Sep 17 00:00:00 2001 From: shrutiburman <87537688+shrutiburman@users.noreply.github.com> Date: Tue, 9 Jun 2026 14:49:30 +0530 Subject: [PATCH 1/2] chore: add rubocop gem for formatting --- Gemfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Gemfile b/Gemfile index a09faa438..57a2d1b15 100644 --- a/Gemfile +++ b/Gemfile @@ -6,3 +6,7 @@ gem "base64" gem "benchmark" gem "ostruct" gem "rexml" + +group :development do + gem 'rubocop', '1.71.2' +end From dbea03927bf5811921d26e38306de635561ef0db Mon Sep 17 00:00:00 2001 From: shrutiburman <87537688+shrutiburman@users.noreply.github.com> Date: Tue, 9 Jun 2026 14:51:02 +0530 Subject: [PATCH 2/2] Move rubocop gem to main Gemfile section --- Gemfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Gemfile b/Gemfile index 57a2d1b15..065ad0c32 100644 --- a/Gemfile +++ b/Gemfile @@ -6,7 +6,4 @@ gem "base64" gem "benchmark" gem "ostruct" gem "rexml" - -group :development do - gem 'rubocop', '1.71.2' -end +gem "rubocop", "1.71.2"