rspec-core 3.1.1 → 3.1.2
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
- checksums.yaml.gz.sig +0 -0
- data.tar.gz.sig +0 -0
- data/Changelog.md +8 -0
- data/lib/rspec/core/configuration.rb +1 -1
- 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: 2d7e1b50ad8c9298e889446902dd9baa3e2127b3
|
|
4
|
+
data.tar.gz: ed66b3815cc180d4cdedee12ba437189f1195e6a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6cea9b2642cee662029723f22b3fa394a19ce8ce076ad3cacfbdfae9a085f0eb897d7487f0b6062e921b23a4996c1df141ff066556345fa155351af2370ab589
|
|
7
|
+
data.tar.gz: b20f35ee607fb95bf36f4ecf17ccd27792101bca28505f67450ae7e7a58fe021684ee8db88e742613657267da1060267508451e17c856dd528354bd8980b4429
|
checksums.yaml.gz.sig
CHANGED
|
Binary file
|
data.tar.gz.sig
CHANGED
|
Binary file
|
data/Changelog.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
### 3.1.2 / 2014-09-08
|
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.1...v3.1.2)
|
|
3
|
+
|
|
4
|
+
Bug Fixes:
|
|
5
|
+
|
|
6
|
+
* Fix another regression in rake task pattern handling, so that patterns
|
|
7
|
+
that start with `./` still work. (Christian Nelson, #1696)
|
|
8
|
+
|
|
1
9
|
### 3.1.1 / 2014-09-05
|
|
2
10
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.0...v3.1.1)
|
|
3
11
|
|
|
@@ -1337,7 +1337,7 @@ module RSpec
|
|
|
1337
1337
|
|
|
1338
1338
|
def get_matching_files(path, pattern)
|
|
1339
1339
|
stripped = "{#{pattern.gsub(/\s*,\s*/, ',')}}"
|
|
1340
|
-
pattern =~
|
|
1340
|
+
pattern =~ /^(\.\/)?#{Regexp.escape path}/ ? Dir[stripped] : Dir["#{path}/#{stripped}"]
|
|
1341
1341
|
end
|
|
1342
1342
|
|
|
1343
1343
|
def extract_location(path)
|
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.1.
|
|
4
|
+
version: 3.1.2
|
|
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-09-
|
|
37
|
+
date: 2014-09-08 00:00:00.000000000 Z
|
|
38
38
|
dependencies:
|
|
39
39
|
- !ruby/object:Gem::Dependency
|
|
40
40
|
name: rspec-support
|
|
@@ -266,6 +266,6 @@ rubyforge_project: rspec
|
|
|
266
266
|
rubygems_version: 2.2.2
|
|
267
267
|
signing_key:
|
|
268
268
|
specification_version: 4
|
|
269
|
-
summary: rspec-core-3.1.
|
|
269
|
+
summary: rspec-core-3.1.2
|
|
270
270
|
test_files: []
|
|
271
271
|
has_rdoc:
|
metadata.gz.sig
CHANGED
|
Binary file
|