json_expressions 0.8.0 → 0.8.1
Sign up to get free protection for your applications and to get access to all the features.
- data/CHANGELOG.md +4 -0
- data/lib/json_expressions/matcher.rb +1 -1
- metadata +2 -2
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,7 @@
|
|
1
|
+
### v0.8.1 [view commit logs](https://github.com/chancancode/json_expressions/compare/0.8.0...0.8.1)
|
2
|
+
|
3
|
+
* Fat finger: reverted a change in 0.8.0 which changed the default value of `assume_unordered_arrays` from true to false. Added tests to make sure this never happens again.
|
4
|
+
|
1
5
|
### v0.8.0 [view commit logs](https://github.com/chancancode/json_expressions/compare/0.7.3...0.8.0)
|
2
6
|
|
3
7
|
* Added Test::Unit support.
|
@@ -14,7 +14,7 @@ module JsonExpressions
|
|
14
14
|
# By default, assume arrays are unordered when not specified
|
15
15
|
# Default: true
|
16
16
|
attr_accessor :assume_unordered_arrays
|
17
|
-
JsonExpressions::Matcher.assume_unordered_arrays =
|
17
|
+
JsonExpressions::Matcher.assume_unordered_arrays = true
|
18
18
|
|
19
19
|
# JsonExpressions::Matcher.assume_strict_arrays (Boolean)
|
20
20
|
# By default, reject arrays with extra elements when not specified
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: json_expressions
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.8.
|
4
|
+
version: 0.8.1
|
5
5
|
prerelease:
|
6
6
|
platform: ruby
|
7
7
|
authors:
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2012-08-
|
12
|
+
date: 2012-08-24 00:00:00.000000000 Z
|
13
13
|
dependencies: []
|
14
14
|
description: JSON matchmaking for all your API testing needs.
|
15
15
|
email:
|