rspec-core 2.14.6 → 2.14.7

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,15 +1,15 @@
1
1
  ---
2
2
  !binary "U0hBMQ==":
3
3
  metadata.gz: !binary |-
4
- MGY4NjE0Y2VlYmNhNGIwMGQ1NmFhMTgyODY5MTg4MWUzZDYzODNkOA==
4
+ MWFiZDA5MTZlZDE3NzI2MTljNTcyNGY1NGFkMzE2NGU4M2JhOTBmYQ==
5
5
  data.tar.gz: !binary |-
6
- NzA5NDYzZmM4MzE5NjZkZTcwNTVkZmY2ZDY1NzZlYWI3MTU5NzJkOA==
6
+ MWQ2MmRjM2YyNmY2ZjNkZGU5ZjU5YTA4MjBhYTJmOWRhMzE1MjdiZQ==
7
7
  !binary "U0hBNTEy":
8
8
  metadata.gz: !binary |-
9
- N2IyZWNhMzBmNWZkYzcxZTI2MGQ2MmZiNDA1ODE3ODE4MGExYmYwY2E2MWMx
10
- MjYzNmI1NmYxNzhiNmEyN2NkNzY5NmRlOTFhOWExN2Y0MmQ4ODEzZTY1ZDll
11
- ZTkxYTlkN2JjMWJmNzE3ZmZlY2E1NzU1NDYwYWJkOWNmMzA0ZjA=
9
+ ZjZkZGU4MDM0YzAzNGY0ODBmODgyNzJkOTQzNjJjMTE3YzBiOGMwM2EwMDM3
10
+ YzVjMmZhYzM5OTJkMDdlOGRmMDlmNWZiZjljYWYzN2Y0NzI3ZTFlZjFiOWIw
11
+ OTdjZDRhMWU3NTU2MDkyMWIzNWQwZjdmZGJlNTIxMjhlNzE0MDc=
12
12
  data.tar.gz: !binary |-
13
- MGM2OTRiZDI5YzdhOTk3NmIwZTJlN2M4OTJmZTRjODEwMGQzOWJmOWQ0MTEy
14
- ZjVkYzJmMTBhMmZlYmI2NWQxYjgzODdlMDI3YWE5ODNkOTY1MTBkMDdhZmYz
15
- YWNkNGRkODI4MDMxYzUxMjhjNDM2NDE5MTBkODdmYzU0NDJjNjY=
13
+ MWZmMjYwZGM2ZTBlNjNiODA1MTBjYWY3NzZmNmUwMGI3ZjkyM2JhZDkyODgy
14
+ NzZjODk4YTNhYzNmNThkN2Q3M2E3NjhiZDkwYTFkMWQ4NmU0ZGI2MGYyODdj
15
+ OWY0YjE1MGNlOTE4NzdhNzFkNzUxODdhMDEzY2I1MmUxZmExMDU=
@@ -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
 
@@ -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
@@ -1,7 +1,7 @@
1
1
  module RSpec
2
2
  module Core
3
3
  module Version
4
- STRING = '2.14.6'
4
+ STRING = '2.14.7'
5
5
  end
6
6
  end
7
7
  end
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.6
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-16 00:00:00.000000000 Z
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.6
378
+ summary: rspec-core-2.14.7
379
379
  test_files:
380
380
  - features/Autotest.md
381
381
  - features/README.md