rspec-core 3.0.3 → 3.0.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Changelog.md +11 -0
- data/lib/rspec/core/configuration.rb +1 -0
- data/lib/rspec/core/configuration_options.rb +2 -2
- data/lib/rspec/core/version.rb +1 -1
- metadata +3 -3
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 3bd37cf851aa9d257e6cbc74c9faac447d71d106
|
4
|
+
data.tar.gz: bbbd5d2fb3839f3f59b29e26c789da6a507fc47a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 986789472c22b14c4f619b381e4c0d70da004dded0a2c57ca9f7abf082efa7696ebe580252e240b6d8fee50a5b502a6f1f1983b100d81d416b5cc6ecf45158f5
|
7
|
+
data.tar.gz: 1e5406a618c112457adde4f8923b5045b63b14f8e3cc0f017e8c46cec7cf3c3e4a0e837d2773c94107f4ebcb17a99c0d935a2f09967bfd06128d2bd0b076ca42
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,3 +1,14 @@
|
|
1
|
+
### 3.0.4 / 2014-08-14
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.3...v3.0.4)
|
3
|
+
|
4
|
+
Bug Fixes:
|
5
|
+
|
6
|
+
* Fix processing order of CLI options so that if `config.files_to_run`
|
7
|
+
is accessed from a file loaded by `--require`, `--pattern` is still
|
8
|
+
applied. (Myron Marston, #1652)
|
9
|
+
* Fix `config.pattern=` so that it still takes affect even if
|
10
|
+
`config.files_to_run` has already been accessed. (Myron Marston, #1652)
|
11
|
+
|
1
12
|
### 3.0.3 / 2014-07-21
|
2
13
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.0.2...v3.0.3)
|
3
14
|
|
@@ -82,9 +82,9 @@ module RSpec
|
|
82
82
|
# set before it.
|
83
83
|
:default_path,
|
84
84
|
|
85
|
-
# must be set before `requires` to support checking `config.files_to_run`
|
85
|
+
# These must be set before `requires` to support checking `config.files_to_run`
|
86
86
|
# from within `spec_helper.rb` when a `-rspec_helper` option is used.
|
87
|
-
:files_or_directories_to_run,
|
87
|
+
:files_or_directories_to_run, :pattern,
|
88
88
|
|
89
89
|
# In general, we want to require the specified files as early as possible.
|
90
90
|
# The `--require` option is specifically intended to allow early requires.
|
data/lib/rspec/core/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Baker
|
@@ -34,7 +34,7 @@ cert_chain:
|
|
34
34
|
1yHC1AcSYpvi2dAbOiHT5iQF+krm4wse8KctXgTNnjMsHEoGKulJS2/sZl90jcCz
|
35
35
|
muA=
|
36
36
|
-----END CERTIFICATE-----
|
37
|
-
date: 2014-
|
37
|
+
date: 2014-08-14 00:00:00.000000000 Z
|
38
38
|
dependencies:
|
39
39
|
- !ruby/object:Gem::Dependency
|
40
40
|
name: rspec-support
|
@@ -265,6 +265,6 @@ rubyforge_project: rspec
|
|
265
265
|
rubygems_version: 2.2.2
|
266
266
|
signing_key:
|
267
267
|
specification_version: 4
|
268
|
-
summary: rspec-core-3.0.
|
268
|
+
summary: rspec-core-3.0.4
|
269
269
|
test_files: []
|
270
270
|
has_rdoc:
|
metadata.gz.sig
CHANGED
Binary file
|