[DRE-commits] [ruby-rspec-instafail] 95/108: bump lockfiles

Hideki Yamane henrich at moszumanska.debian.org
Sun Nov 15 18:36:25 UTC 2015


This is an automated email from the git hooks/post-receive script.

henrich pushed a commit to branch debian/sid
in repository ruby-rspec-instafail.

commit 0e10f3ac4ed9c2bd062c2992ec0d2ef4b5f2ef15
Author: grosser <michael at grosser.it>
Date:   Tue Jan 6 09:10:30 2015 -0800

    bump lockfiles
---
 Gemfile.lock              | 24 ++++++++++++++----------
 spec/instafail_spec.rb    | 13 +++++++++----
 spec/rspec_1/Gemfile      |  4 ++--
 spec/rspec_1/Gemfile.lock |  4 ++--
 spec/rspec_2/Gemfile      |  4 ++--
 spec/rspec_2/Gemfile.lock | 22 +++++++++++-----------
 spec/rspec_2/a_test.rb    |  4 ++--
 spec/rspec_3/Gemfile      |  4 ++--
 spec/rspec_3/Gemfile.lock | 26 +++++++++++++-------------
 9 files changed, 57 insertions(+), 48 deletions(-)

diff --git a/Gemfile.lock b/Gemfile.lock
index 03dedee..31e1b0e 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -7,17 +7,21 @@ PATH
 GEM
   remote: https://rubygems.org/
   specs:
-    bump (0.4.0)
+    bump (0.5.1)
     diff-lcs (1.2.5)
-    rake (10.0.3)
-    rspec (2.99.0)
-      rspec-core (~> 2.99.0)
-      rspec-expectations (~> 2.99.0)
-      rspec-mocks (~> 2.99.0)
-    rspec-core (2.99.0)
-    rspec-expectations (2.99.0)
-      diff-lcs (>= 1.1.3, < 2.0)
-    rspec-mocks (2.99.0)
+    rake (10.4.2)
+    rspec (3.1.0)
+      rspec-core (~> 3.1.0)
+      rspec-expectations (~> 3.1.0)
+      rspec-mocks (~> 3.1.0)
+    rspec-core (3.1.7)
+      rspec-support (~> 3.1.0)
+    rspec-expectations (3.1.2)
+      diff-lcs (>= 1.2.0, < 2.0)
+      rspec-support (~> 3.1.0)
+    rspec-mocks (3.1.3)
+      rspec-support (~> 3.1.0)
+    rspec-support (3.1.2)
 
 PLATFORMS
   ruby
diff --git a/spec/instafail_spec.rb b/spec/instafail_spec.rb
index 075b402..3257ae6 100755
--- a/spec/instafail_spec.rb
+++ b/spec/instafail_spec.rb
@@ -1,3 +1,8 @@
+RSpec.configure do |config|
+  config.expect_with(:rspec) { |c| c.syntax = :should }
+  config.mock_with(:rspec) { |c| c.syntax = :should }
+end
+
 describe 'RSpec::Instafail' do
   context "RSpec 1.x" do
     before :all do
@@ -26,7 +31,7 @@ describe 'RSpec::Instafail' do
   context 'Rspec 2.x' do
     before :all do
       Bundler.with_clean_env do
-        @rspec_result = `cd spec/rspec_2 && bundle exec rspec a_test.rb --require ../../lib/rspec/instafail --format RSpec::Instafail --no-color --order default`
+        @rspec_result = `cd spec/rspec_2 && bundle exec rspec a_test.rb --require ../../lib/rspec/instafail --format RSpec::Instafail --no-color --order defined`
       end
     end
 
@@ -47,15 +52,15 @@ describe 'RSpec::Instafail' do
     end
 
     it "does not add ancestors after failures" do
-      @output.should include('ANCESTORS:2')
-      @output.should_not include('ANCESTORS:3')
+      @output.should include('ANCESTORS:17')
+      @output.should_not include('ANCESTORS:18')
     end
   end
 
   context 'Rspec 3.x' do
     before :all do
       Bundler.with_clean_env do
-        @rspec_result = `cd spec/rspec_3 && bundle exec rspec a_test.rb --require ../../lib/rspec/instafail --format RSpec::Instafail --no-color --order default`
+        @rspec_result = `cd spec/rspec_3 && bundle exec rspec a_test.rb --require ../../lib/rspec/instafail --format RSpec::Instafail --no-color --order defined`
       end
     end
 
diff --git a/spec/rspec_1/Gemfile b/spec/rspec_1/Gemfile
index 62e5cf9..06b476c 100755
--- a/spec/rspec_1/Gemfile
+++ b/spec/rspec_1/Gemfile
@@ -1,2 +1,2 @@
-source 'http://rubygems.org'
-gem 'rspec', '1.3.0'
+source 'https://rubygems.org'
+gem 'rspec', '~> 1.3'
diff --git a/spec/rspec_1/Gemfile.lock b/spec/rspec_1/Gemfile.lock
old mode 100755
new mode 100644
index a0bcbcb..3c2260c
--- a/spec/rspec_1/Gemfile.lock
+++ b/spec/rspec_1/Gemfile.lock
@@ -1,5 +1,5 @@
 GEM
-  remote: http://rubygems.org/
+  remote: https://rubygems.org/
   specs:
     rspec (1.3.0)
 
@@ -7,4 +7,4 @@ PLATFORMS
   ruby
 
 DEPENDENCIES
-  rspec (= 1.3.0)
+  rspec (~> 1.3)
diff --git a/spec/rspec_2/Gemfile b/spec/rspec_2/Gemfile
index fbe4f90..65af9e2 100755
--- a/spec/rspec_2/Gemfile
+++ b/spec/rspec_2/Gemfile
@@ -1,3 +1,3 @@
-source 'http://rubygems.org'
-gem 'rspec', '>=2.2'
+source 'https://rubygems.org'
+gem 'rspec', '~> 2.2'
 
diff --git a/spec/rspec_2/Gemfile.lock b/spec/rspec_2/Gemfile.lock
old mode 100755
new mode 100644
index b68cba3..4dc1edc
--- a/spec/rspec_2/Gemfile.lock
+++ b/spec/rspec_2/Gemfile.lock
@@ -1,18 +1,18 @@
 GEM
-  remote: http://rubygems.org/
+  remote: https://rubygems.org/
   specs:
-    diff-lcs (1.1.3)
-    rspec (2.8.0)
-      rspec-core (~> 2.8.0)
-      rspec-expectations (~> 2.8.0)
-      rspec-mocks (~> 2.8.0)
-    rspec-core (2.8.0)
-    rspec-expectations (2.8.0)
-      diff-lcs (~> 1.1.2)
-    rspec-mocks (2.8.0)
+    diff-lcs (1.2.5)
+    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-mocks (2.99.2)
 
 PLATFORMS
   ruby
 
 DEPENDENCIES
-  rspec (>= 2.2)
+  rspec (~> 2.2)
diff --git a/spec/rspec_2/a_test.rb b/spec/rspec_2/a_test.rb
index 7228334..117edc6 100755
--- a/spec/rspec_2/a_test.rb
+++ b/spec/rspec_2/a_test.rb
@@ -12,7 +12,7 @@ describe 'x' do
   end
 
   it 'pends' do
-    pending
+    skip
     raise
   end
 
@@ -30,7 +30,7 @@ describe 'x' do
   end
 
   context "ancestors" do
-    after do
+    after do |example|
       puts "ANCESTORS:#{example.example_group.ancestors.size}"
     end
 
diff --git a/spec/rspec_3/Gemfile b/spec/rspec_3/Gemfile
index d4e4e53..866f6fa 100755
--- a/spec/rspec_3/Gemfile
+++ b/spec/rspec_3/Gemfile
@@ -1,2 +1,2 @@
-source 'http://rubygems.org'
-gem 'rspec', '>=3.0'
+source 'https://rubygems.org'
+gem 'rspec', '~> 3.0'
diff --git a/spec/rspec_3/Gemfile.lock b/spec/rspec_3/Gemfile.lock
old mode 100755
new mode 100644
index f261f70..0f07992
--- a/spec/rspec_3/Gemfile.lock
+++ b/spec/rspec_3/Gemfile.lock
@@ -1,22 +1,22 @@
 GEM
-  remote: http://rubygems.org/
+  remote: https://rubygems.org/
   specs:
     diff-lcs (1.2.5)
-    rspec (3.0.0)
-      rspec-core (~> 3.0.0)
-      rspec-expectations (~> 3.0.0)
-      rspec-mocks (~> 3.0.0)
-    rspec-core (3.0.0)
-      rspec-support (~> 3.0.0)
-    rspec-expectations (3.0.0)
+    rspec (3.1.0)
+      rspec-core (~> 3.1.0)
+      rspec-expectations (~> 3.1.0)
+      rspec-mocks (~> 3.1.0)
+    rspec-core (3.1.7)
+      rspec-support (~> 3.1.0)
+    rspec-expectations (3.1.2)
       diff-lcs (>= 1.2.0, < 2.0)
-      rspec-support (~> 3.0.0)
-    rspec-mocks (3.0.0)
-      rspec-support (~> 3.0.0)
-    rspec-support (3.0.0)
+      rspec-support (~> 3.1.0)
+    rspec-mocks (3.1.3)
+      rspec-support (~> 3.1.0)
+    rspec-support (3.1.2)
 
 PLATFORMS
   ruby
 
 DEPENDENCIES
-  rspec (>= 3.0)
+  rspec (~> 3.0)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/pkg-ruby-extras/ruby-rspec-instafail.git



More information about the Pkg-ruby-extras-commits mailing list