diff options
author | Robert Speicher <rspeicher@gmail.com> | 2018-08-14 14:56:02 -0500 |
---|---|---|
committer | Robert Speicher <rspeicher@gmail.com> | 2018-08-15 16:04:16 -0500 |
commit | 268d23de46525cc18b805f09bf3eb3a1aa6aa8b8 (patch) | |
tree | 541d409907090c09a23434eab8a9363e1838bfb8 | |
parent | cfec435a64ec7571a8333dc754afac0a41ebc6d8 (diff) | |
download | gitlab-shell-268d23de46525cc18b805f09bf3eb3a1aa6aa8b8.tar.gz |
Update rspec to 3.8.0; remove rspec-its
-rw-r--r-- | Gemfile | 3 | ||||
-rw-r--r-- | Gemfile.lock | 27 | ||||
-rw-r--r-- | spec/spec_helper.rb | 2 |
3 files changed, 15 insertions, 17 deletions
@@ -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 |