rspec-core 3.2.0 → 3.2.1
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 +8 -0
- data/lib/rspec/core/reporter.rb +1 -1
- data/lib/rspec/core/version.rb +1 -1
- metadata +4 -4
- 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: d3464d50aabc135c4eb42c895bf39efee77b71c0
|
4
|
+
data.tar.gz: 7ece9a5ae8f18b7dd4f64922278e16f27bf5c7df
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a17e0892a0475a1fc22e75da06fa40b9f7e6e99e1aa709b148f6cd4ea7b435aec49c298cb39f9bd7030fd18de5a7c045810dbb0045c92213b094f82cd671c217
|
7
|
+
data.tar.gz: 9e2a83b038993bddf729f9821349588d6c21612fec3482bd39ea7835bcbeccf85d21feb72c3676cb336ea24792436760b574181a346b88df7280976844c363c0
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data.tar.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
### 3.2.1 / 2015-02-23
|
2
|
+
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.2.0...v3.2.1)
|
3
|
+
|
4
|
+
Bug Fixes:
|
5
|
+
|
6
|
+
* Notify start-of-run seed _before_ `start` notification rather than
|
7
|
+
_after_ so that formatters like Fuubar work properly. (Samuel Esposito, #1882)
|
8
|
+
|
1
9
|
### 3.2.0 / 2015-02-03
|
2
10
|
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.1.7...v3.2.0)
|
3
11
|
|
data/lib/rspec/core/reporter.rb
CHANGED
@@ -69,8 +69,8 @@ module RSpec::Core
|
|
69
69
|
def start(expected_example_count, time=RSpec::Core::Time.now)
|
70
70
|
@start = time
|
71
71
|
@load_time = (@start - @configuration.start_time).to_f
|
72
|
-
notify :start, Notifications::StartNotification.new(expected_example_count, @load_time)
|
73
72
|
notify :seed, Notifications::SeedNotification.new(@configuration.seed, seed_used?)
|
73
|
+
notify :start, Notifications::StartNotification.new(expected_example_count, @load_time)
|
74
74
|
end
|
75
75
|
|
76
76
|
# @private
|
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.2.
|
4
|
+
version: 3.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Steven Baker
|
@@ -46,7 +46,7 @@ cert_chain:
|
|
46
46
|
ZsVDj6a7lH3cNqtWXZxrb2wO38qV5AkYj8SQK7Hj3/Yui9myUX3crr+PdetazSqQ
|
47
47
|
F3MdtaDehhjC
|
48
48
|
-----END CERTIFICATE-----
|
49
|
-
date: 2015-02-
|
49
|
+
date: 2015-02-24 00:00:00.000000000 Z
|
50
50
|
dependencies:
|
51
51
|
- !ruby/object:Gem::Dependency
|
52
52
|
name: rspec-support
|
@@ -276,9 +276,9 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
276
276
|
version: '0'
|
277
277
|
requirements: []
|
278
278
|
rubyforge_project: rspec
|
279
|
-
rubygems_version: 2.
|
279
|
+
rubygems_version: 2.4.5
|
280
280
|
signing_key:
|
281
281
|
specification_version: 4
|
282
|
-
summary: rspec-core-3.2.
|
282
|
+
summary: rspec-core-3.2.1
|
283
283
|
test_files: []
|
284
284
|
has_rdoc:
|
metadata.gz.sig
CHANGED
Binary file
|