respec 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 396cc6c0d51083e279d493000adb0adb7fc79cca
4
- data.tar.gz: c426e519c224bbd542f3889332e597726c3542b2
3
+ metadata.gz: e3f1571c77cdbc42f05ba4be1d24b16bd45594bc
4
+ data.tar.gz: 87193ed3225cf42353d7c84daab601c527703833
5
5
  SHA512:
6
- metadata.gz: baaa1afe7a1c8d61d079450347e5168ae95b6c2f22f9676d9237d27d1d38674f30c066a5889ddd9925c558a8719083a63eabe631dcd25de8df6f7a8f9dd11e52
7
- data.tar.gz: 570fe25028bd088b82e5d5f2a7c5f62c9bdca953c33e91689233fe69c8c3478092dab9af3d25626844e2b7bee0f1af15ec93a827f8193f153a61e1f400fa3978
6
+ metadata.gz: e4ef13eb162c6de5f5b8b833b3748b25f5df8fafb892841365711205252caa935a1ab0194eb159ad3d8fa6b17ead23b755259fc6af2784ac3f519781d67f4141
7
+ data.tar.gz: 34855a3e3d6dd6bc663c17b68ed426a8b5f7d89da91b46b1460b321ac2229d0d0ce1e72ebf96d5a2df26e062e48ca148a7c0e0ed5d46fb148d5ab68b52c06134
@@ -1,3 +1,4 @@
1
+ sudo: false
1
2
  language: ruby
2
3
  bundler_args: --without dev
3
4
  script: bundle exec rake ci
data/CHANGELOG CHANGED
@@ -1,3 +1,7 @@
1
+ == 0.9.1 2017-03-21
2
+
3
+ * Fix passing some options which take arguments to rspec (e.g. -p).
4
+
1
5
  == 0.9.0 2015-10-10
2
6
 
3
7
  * Fail with error if an invalid number is given, so we don't run everything.
data/Rakefile CHANGED
@@ -1,5 +1,7 @@
1
1
  require 'ritual'
2
2
 
3
3
  task :ci do
4
+ sh 'git config --global user.name || git config --global user.name Test'
5
+ sh 'git config --global user.email || git config --global user.email test@example.com'
4
6
  sh 'bundle exec rspec spec'
5
7
  end
@@ -195,11 +195,13 @@ module Respec
195
195
  --drb-port
196
196
  -f --format --formatter
197
197
  -o --out
198
+ --deprecation-out
199
+ -p --profile
198
200
  -P --pattern
201
+ --exclude-pattern
199
202
  -e --example
200
- -l --line_number
201
203
  -t --tag
202
- --default_path
204
+ --default-path
203
205
  ].to_set
204
206
  end
205
207
  end
@@ -1,5 +1,5 @@
1
1
  module Respec
2
- VERSION = [0, 9, 0]
2
+ VERSION = [0, 9, 1]
3
3
 
4
4
  class << VERSION
5
5
  include Comparable
@@ -36,7 +36,8 @@ describe Respec::Formatter do
36
36
  before { allow(Respec).to receive(:failures_path).and_return("#{TMP}/failures.txt") }
37
37
 
38
38
  def make_failure_notification(description)
39
- example = double(RSpec::Core::Example.allocate, full_description: description)
39
+ result = RSpec::Core::Example::ExecutionResult.new
40
+ example = double(RSpec::Core::Example.allocate, full_description: description, execution_result: result)
40
41
  RSpec::Core::Notifications::FailedExampleNotification.new(example)
41
42
  end
42
43
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: respec
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.9.0
4
+ version: 0.9.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - George Ogata
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-10-10 00:00:00.000000000 Z
11
+ date: 2017-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rspec
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
69
69
  version: '0'
70
70
  requirements: []
71
71
  rubyforge_project:
72
- rubygems_version: 2.4.8
72
+ rubygems_version: 2.5.2
73
73
  signing_key:
74
74
  specification_version: 4
75
75
  summary: Rerun failing RSpec examples easily.