hypothesis-specs 0.7.0 → 0.7.1
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 +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/hypothesis.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: cbb474ec8dfa5611bdcd0b7c49b03f55f93aadc178fb4b826561085b1d18b7a1
|
|
4
|
+
data.tar.gz: 0261acdf7ba9861d1bbe2bed050fc6949bbc37636a6813bc035fa2f4b5305f14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 522ffc7e052fbe1da4d8aa30e310858f9b2dde70dddf279a3e9271b0a927df0e9bb73911f471315d1620d703498144fed8a7a87f0929f450eeb087c9cb081e01
|
|
7
|
+
data.tar.gz: ca528d9fe8f1aaf1b39cbad52b0bb043da0940e9c26e2b866b9ae9a2595267a8cdd8e93c5a207898f2ca785bfa3db85f175e49a6443a9e1141c8137b17fe653f
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
# Hypothesis for Ruby 0.7.1 (2021-03-27)
|
|
2
|
+
|
|
3
|
+
This patch fixes some internal typos. There is no user-visible change.
|
|
4
|
+
|
|
1
5
|
# Hypothesis for Ruby 0.7.0 (2021-03-12)
|
|
2
6
|
|
|
3
7
|
Moves rake from being a a runtime dependency to being a development dependency. Rake is used to run tests but is not required for consumers of hypothesis-ruby.
|
|
@@ -48,7 +52,7 @@ manually pass a seed.
|
|
|
48
52
|
|
|
49
53
|
# Hypothesis for Ruby 0.1.2 (2018-09-24)
|
|
50
54
|
|
|
51
|
-
This release makes the code
|
|
55
|
+
This release makes the code usable via a direct require.
|
|
52
56
|
I.e. no need for rubygems or any special LOAD_PATH.
|
|
53
57
|
|
|
54
58
|
For example, if the base directory were in /opt, you'd just say:
|
data/lib/hypothesis.rb
CHANGED
|
@@ -69,7 +69,7 @@ module Hypothesis
|
|
|
69
69
|
# the previous examples.
|
|
70
70
|
|
|
71
71
|
# Note that essentially any answer to this method is
|
|
72
|
-
# "fine" in that the failure mode is that
|
|
72
|
+
# "fine" in that the failure mode is that sometimes we
|
|
73
73
|
# just won't run the same test, but it's nice to keep
|
|
74
74
|
# this as stable as possible if the code isn't changing.
|
|
75
75
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: hypothesis-specs
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.7.
|
|
4
|
+
version: 0.7.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- David R. Maciver
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: bin
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2021-03-
|
|
12
|
+
date: 2021-03-27 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: rutie
|
|
@@ -69,7 +69,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
69
69
|
- !ruby/object:Gem::Version
|
|
70
70
|
version: '0'
|
|
71
71
|
requirements: []
|
|
72
|
-
rubygems_version: 3.2.
|
|
72
|
+
rubygems_version: 3.2.15
|
|
73
73
|
signing_key:
|
|
74
74
|
specification_version: 4
|
|
75
75
|
summary: Hypothesis is a powerful, flexible, and easy to use library for property-based
|