rspec-given 3.5.0 → 3.5.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 7d7779712b2d047625828f2ac0cb2c47f485d1da
|
4
|
+
data.tar.gz: 45368433f49195587ad42b3b8d9bd819069a3873
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 89bef1cc50f42bcc22acb1956ceed2730dfa0f5e8b78f9e414cfe1f61dca492b2222b19cb21f24720de92ca4adb8479aa076ace3a87bb5af76e4d4a6b6333060
|
7
|
+
data.tar.gz: cae1674d997857ec6badd5212d414b811fb5347192997e81fbaa3a2703fd7b4d18e39da179b2ee4151ac051b73fc12c6a3bcbc433e8fcabb83962407b917c01e
|
data/README.md
CHANGED
@@ -4,7 +4,7 @@
|
|
4
4
|
| :----: |
|
5
5
|
| [![Master Build Status](https://secure.travis-ci.org/jimweirich/rspec-given.png?branch=master)](https://travis-ci.org/jimweirich/rspec-given) |
|
6
6
|
|
7
|
-
Covering rspec-given, minitest-given, and given-core, version 3.5.
|
7
|
+
Covering rspec-given, minitest-given, and given-core, version 3.5.3.
|
8
8
|
|
9
9
|
rspec-given and minitest-given are extensions to your favorite testing
|
10
10
|
framework to allow Given/When/Then notation when writing specs.
|
@@ -791,7 +791,7 @@ end
|
|
791
791
|
|
792
792
|
To use the non-testing assertions, you need to require the
|
793
793
|
'given/assertions' file and then include the
|
794
|
-
code>Given::Assertions</code> module into what ever class is using
|
794
|
+
<code>Given::Assertions</code> module into what ever class is using
|
795
795
|
the
|
796
796
|
<code>Precondition</code>/<code>Postcondition</code>/<code>Assert</code>
|
797
797
|
methods. The code block for these assertions should always be a
|
@@ -870,6 +870,16 @@ License. See the MIT-LICENSE file in the source distribution.
|
|
870
870
|
|
871
871
|
# History
|
872
872
|
|
873
|
+
* Version 3.5.3
|
874
|
+
|
875
|
+
* source_caching_disabled now hard defaults to false, rather than
|
876
|
+
attempting to guess the default from the formatters.
|
877
|
+
|
878
|
+
* Version 3.5.0
|
879
|
+
|
880
|
+
* Use Ripper to determine complete subexpressions (rather than
|
881
|
+
relying on finicky indentation rules.
|
882
|
+
|
873
883
|
* Version 3.4.0
|
874
884
|
|
875
885
|
* Bare failure objects in Then clauses will now propagate their
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-given
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.5.
|
4
|
+
version: 3.5.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jim Weirich
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-
|
11
|
+
date: 2014-02-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: given_core
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.5.
|
19
|
+
version: 3.5.3
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.5.
|
26
|
+
version: 3.5.3
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rspec
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|