From 03a71dde5a0e9c29518d181d01b3749710bd04cf Mon Sep 17 00:00:00 2001 From: Syed Faraaz Ahmad Date: Tue, 24 Oct 2023 01:06:16 +0530 Subject: [PATCH] add rspec to dev,test --- Gemfile | 2 ++ Gemfile.lock | 15 +++++++++++++++ 2 files changed, 17 insertions(+) diff --git a/Gemfile b/Gemfile index fa627ec..a3ad3e1 100644 --- a/Gemfile +++ b/Gemfile @@ -9,3 +9,5 @@ gem "syntax_tree", "~> 6.2" gem "rubocop", "~> 1.57", groups: %i[development test] gem "rake", "~> 13.0", :groups => [:development, :test] + +gem "rspec", "~> 3.12", :groups => [:development, :test] diff --git a/Gemfile.lock b/Gemfile.lock index baea0e7..165bcc4 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -3,6 +3,7 @@ GEM specs: ast (2.4.2) base64 (0.1.1) + diff-lcs (1.5.0) json (2.6.3) language_server-protocol (3.17.0.3) parallel (1.23.0) @@ -15,6 +16,19 @@ GEM rake (13.0.6) regexp_parser (2.8.2) rexml (3.2.6) + rspec (3.12.0) + rspec-core (~> 3.12.0) + rspec-expectations (~> 3.12.0) + rspec-mocks (~> 3.12.0) + rspec-core (3.12.2) + rspec-support (~> 3.12.0) + rspec-expectations (3.12.3) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.12.0) + rspec-mocks (3.12.6) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.12.0) + rspec-support (3.12.1) rubocop (1.57.1) base64 (~> 0.1.1) json (~> 2.3) @@ -40,6 +54,7 @@ PLATFORMS DEPENDENCIES rake (~> 13.0) + rspec (~> 3.12) rubocop (~> 1.57) syntax_tree (~> 6.2)