rspec-core 2.14.6 → 2.14.7
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/Changelog.md +14 -0
- data/lib/rspec/core/pending.rb +4 -0
- data/lib/rspec/core/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MWFiZDA5MTZlZDE3NzI2MTljNTcyNGY1NGFkMzE2NGU4M2JhOTBmYQ==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MWQ2MmRjM2YyNmY2ZjNkZGU5ZjU5YTA4MjBhYTJmOWRhMzE1MjdiZQ==
|
7
7
|
!binary "U0hBNTEy":
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
ZjZkZGU4MDM0YzAzNGY0ODBmODgyNzJkOTQzNjJjMTE3YzBiOGMwM2EwMDM3
|
10
|
+
YzVjMmZhYzM5OTJkMDdlOGRmMDlmNWZiZjljYWYzN2Y0NzI3ZTFlZjFiOWIw
|
11
|
+
OTdjZDRhMWU3NTU2MDkyMWIzNWQwZjdmZGJlNTIxMjhlNzE0MDc=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
MWZmMjYwZGM2ZTBlNjNiODA1MTBjYWY3NzZmNmUwMGI3ZjkyM2JhZDkyODgy
|
14
|
+
NzZjODk4YTNhYzNmNThkN2Q3M2E3NjhiZDkwYTFkMWQ4NmU0ZGI2MGYyODdj
|
15
|
+
OWY0YjE1MGNlOTE4NzdhNzFkNzUxODdhMDEzY2I1MmUxZmExMDU=
|
data/Changelog.md
CHANGED
@@ -1,3 +1,17 @@
|
|
1
|
+
### 2.14.7 / 2013-10-29
|
2
|
+
[full changelog](http://github.com/rspec/rspec-core/compare/v2.14.6...v2.14.7)
|
3
|
+
|
4
|
+
Bug fixes:
|
5
|
+
|
6
|
+
* Fix regression in 2.14.6 that broke the Fivemat formatter.
|
7
|
+
It depended upon either
|
8
|
+
`example.execution_result[:exception].pending_fixed?` (which
|
9
|
+
was removed in 2.14.6 to fix an issue with frozen error objects)
|
10
|
+
or `RSpec::Core::PendingExampleFixedError` (which was renamed
|
11
|
+
to `RSpec::Core::Pending::PendingExampleFixedError` in 2.8.
|
12
|
+
This fix makes a constant alias for the old error name.
|
13
|
+
(Myron Marston)
|
14
|
+
|
1
15
|
### 2.14.6 / 2013-10-15
|
2
16
|
[full changelog](http://github.com/rspec/rspec-core/compare/v2.14.5...v2.14.6)
|
3
17
|
|
data/lib/rspec/core/pending.rb
CHANGED
@@ -105,5 +105,9 @@ module RSpec
|
|
105
105
|
raise PendingDeclaredInExample.new(message)
|
106
106
|
end
|
107
107
|
end
|
108
|
+
|
109
|
+
# Alias the error for compatibility with extension gems (e.g. formatters)
|
110
|
+
# that depend on the const name of the error in RSpec <= 2.8.
|
111
|
+
PendingExampleFixedError = Pending::PendingExampleFixedError
|
108
112
|
end
|
109
113
|
end
|
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: 2.14.
|
4
|
+
version: 2.14.7
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Baker
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: exe
|
12
12
|
cert_chain: []
|
13
|
-
date: 2013-10-
|
13
|
+
date: 2013-10-30 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: rake
|
@@ -375,7 +375,7 @@ rubyforge_project: rspec
|
|
375
375
|
rubygems_version: 2.0.7
|
376
376
|
signing_key:
|
377
377
|
specification_version: 4
|
378
|
-
summary: rspec-core-2.14.
|
378
|
+
summary: rspec-core-2.14.7
|
379
379
|
test_files:
|
380
380
|
- features/Autotest.md
|
381
381
|
- features/README.md
|