summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <rspeicher@gmail.com>2018-08-14 14:56:02 -0500
committerRobert Speicher <rspeicher@gmail.com>2018-08-15 16:04:16 -0500
commit268d23de46525cc18b805f09bf3eb3a1aa6aa8b8 (patch)
tree541d409907090c09a23434eab8a9363e1838bfb8
parentcfec435a64ec7571a8333dc754afac0a41ebc6d8 (diff)
downloadgitlab-shell-268d23de46525cc18b805f09bf3eb3a1aa6aa8b8.tar.gz
Update rspec to 3.8.0; remove rspec-its
-rw-r--r--Gemfile3
-rw-r--r--Gemfile.lock27
-rw-r--r--spec/spec_helper.rb2
3 files changed, 15 insertions, 17 deletions
diff --git a/Gemfile b/Gemfile
index 2896400..49ed4ad 100644
--- a/Gemfile
+++ b/Gemfile
@@ -2,8 +2,7 @@ source "http://rubygems.org"
group :development, :test do
gem 'listen', '~> 0.5.0'
- gem 'rspec', '~> 2.0'
- gem 'rspec-its', '~> 1.0.0'
+ gem 'rspec', '~> 3.8.0'
gem 'rubocop', '0.49.1', require: false
gem 'simplecov', '~> 0.9.0', require: false
gem 'vcr', '~> 4.0.0'
diff --git a/Gemfile.lock b/Gemfile.lock
index 54d0394..3ae6126 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -18,17 +18,19 @@ GEM
rainbow (2.2.2)
rake
rake (12.3.1)
- rspec (2.99.0)
- rspec-core (~> 2.99.0)
- rspec-expectations (~> 2.99.0)
- rspec-mocks (~> 2.99.0)
- rspec-core (2.99.2)
- rspec-expectations (2.99.2)
- diff-lcs (>= 1.1.3, < 2.0)
- rspec-its (1.0.1)
- rspec-core (>= 2.99.0.beta1)
- rspec-expectations (>= 2.99.0.beta1)
- rspec-mocks (2.99.4)
+ rspec (3.8.0)
+ rspec-core (~> 3.8.0)
+ rspec-expectations (~> 3.8.0)
+ rspec-mocks (~> 3.8.0)
+ rspec-core (3.8.0)
+ rspec-support (~> 3.8.0)
+ rspec-expectations (3.8.1)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.8.0)
+ rspec-mocks (3.8.0)
+ diff-lcs (>= 1.2.0, < 2.0)
+ rspec-support (~> 3.8.0)
+ rspec-support (3.8.0)
rubocop (0.49.1)
parallel (~> 1.10)
parser (>= 2.3.3.1, < 3.0)
@@ -54,8 +56,7 @@ PLATFORMS
DEPENDENCIES
listen (~> 0.5.0)
- rspec (~> 2.0)
- rspec-its (~> 1.0.0)
+ rspec (~> 3.8.0)
rubocop (= 0.49.1)
simplecov (~> 0.9.0)
vcr (~> 4.0.0)
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index bce3eff..d93f88d 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -1,7 +1,5 @@
ROOT_PATH = File.expand_path(File.join(File.dirname(__FILE__), ".."))
-require 'rspec/its'
-
require 'simplecov'
SimpleCov.start