From fded6c26cd4938b67f62ec620b27b700bf2489f4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20Guio?= Date: Mon, 24 May 2021 17:06:54 -0300 Subject: [PATCH] add rspec gem --- ruby/Gemfile | 3 +++ ruby/Gemfile.lock | 26 ++++++++++++++++++++++++++ 2 files changed, 29 insertions(+) create mode 100644 ruby/Gemfile create mode 100644 ruby/Gemfile.lock diff --git a/ruby/Gemfile b/ruby/Gemfile new file mode 100644 index 00000000..199df8f6 --- /dev/null +++ b/ruby/Gemfile @@ -0,0 +1,3 @@ +source "https://rubygems.org" + +gem 'rspec', '~> 3.0' diff --git a/ruby/Gemfile.lock b/ruby/Gemfile.lock new file mode 100644 index 00000000..8143957f --- /dev/null +++ b/ruby/Gemfile.lock @@ -0,0 +1,26 @@ +GEM + remote: https://rubygems.org/ + specs: + diff-lcs (1.4.4) + rspec (3.10.0) + rspec-core (~> 3.10.0) + rspec-expectations (~> 3.10.0) + rspec-mocks (~> 3.10.0) + rspec-core (3.10.1) + rspec-support (~> 3.10.0) + rspec-expectations (3.10.1) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.10.0) + rspec-mocks (3.10.2) + diff-lcs (>= 1.2.0, < 2.0) + rspec-support (~> 3.10.0) + rspec-support (3.10.2) + +PLATFORMS + ruby + +DEPENDENCIES + rspec (~> 3.0) + +BUNDLED WITH + 2.1.4