rspec_runner 0.1.2 → 0.1.3
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 +4 -4
- data/lib/rspec_runner/server.rb +4 -3
- data/lib/rspec_runner/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: f53daae848dfe791940da70582763099d84fb014
|
|
4
|
+
data.tar.gz: 1be24fbdc7fbb1f91aa125a62174beee0fd6a7a7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b0106b07a621099d30ef228ed722fd7580a33931928d726c4efd4cf9837a8a50c3cd83aba37135ad716f916b74e117cfdf6ac3fa424286b76414b62d916135f8
|
|
7
|
+
data.tar.gz: 82c077d5c2ea9641dcbf7ee32bba3d353bc9fa8da1f51fb40c26cd2a8e334251e366b9666eeb6f6ee09cb9c12553b29355b0cd4a8c938e30d5f38225c82a2b7e
|
data/lib/rspec_runner/server.rb
CHANGED
|
@@ -43,12 +43,13 @@ module RspecRunner
|
|
|
43
43
|
world.instance_variable_set(:@example_group_counts_by_spec_file, Hash.new(0))
|
|
44
44
|
configuration.reset
|
|
45
45
|
configuration.reset_filters if configuration.respond_to?(:reset_filters)
|
|
46
|
+
configuration.filter_manager = RSpec::Core::FilterManager.new if configuration.respond_to?(:filter_manager=)
|
|
46
47
|
configuration.files_to_run = []
|
|
47
48
|
configuration.files_or_directories_to_run = []
|
|
48
49
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
50
|
+
return unless configuration.respond_to?(:loaded_spec_files)
|
|
51
|
+
set = configuration.loaded_spec_files
|
|
52
|
+
set.each { |k| set.delete(k) }
|
|
52
53
|
end
|
|
53
54
|
end
|
|
54
55
|
end
|
data/lib/rspec_runner/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec_runner
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- exAspArk
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-01-
|
|
11
|
+
date: 2016-01-05 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|