hypothesis-specs 0.0.11 → 0.0.12
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 +8 -0
- data/Cargo.toml +2 -1
- data/Rakefile +1 -1
- data/lib/hypothesis/engine.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 793034b02b1dde38856e5e7d7192b6b281aae453d6ff060ddd4478147bf066fc
|
|
4
|
+
data.tar.gz: 4fdc7f52bc5d36816a3dfc94c59e4273155af358cb2d57629402e6ad4582090b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 43cd31e4681166b72d147f0c7f5fb0a906b98677515656410897abe7442cf101673e8abbdf69079488de6edbab315be5bfcdfba6a9e9fb6adff95485c9e2ad60
|
|
7
|
+
data.tar.gz: 34859a4362b50323fa4dd19ed195cb9e00a854a5ae0aa06d6c77c8cdb8abb0f8fd21428696fd388c7abe35e49c5eab726e83b7e09aee0ff01478fa9e15c13cac
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
# Hypothesis for Ruby 0.0.12 (2018-06-23)
|
|
2
|
+
|
|
3
|
+
This release is the beginning of splitting out the Rust core of Hypothesis
|
|
4
|
+
Ruby into a separate `conjecture` crate for the non-Ruby-specific components
|
|
5
|
+
of it.
|
|
6
|
+
|
|
7
|
+
It should have no user visible impact.
|
|
8
|
+
|
|
1
9
|
# Hypothesis for Ruby 0.0.11 (2018-06-22)
|
|
2
10
|
|
|
3
11
|
This release has no user-visible changes other than updating the gemspec's
|
data/Cargo.toml
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
[package]
|
|
2
|
-
name = "hypothesis-ruby
|
|
2
|
+
name = "hypothesis-ruby"
|
|
3
3
|
version = "0.1.0"
|
|
4
4
|
authors = ["David R. MacIver <david@drmaciver.com>"]
|
|
5
5
|
|
|
@@ -9,3 +9,4 @@ crate-type = ["cdylib"]
|
|
|
9
9
|
[dependencies]
|
|
10
10
|
helix = '0.7.5'
|
|
11
11
|
rand = '0.3'
|
|
12
|
+
conjecture = '0.1.1'
|
data/Rakefile
CHANGED
data/lib/hypothesis/engine.rb
CHANGED