hypothesis-specs 0.0.11 → 0.0.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b87ca2de65a32341759fdec33ec3f30db049436b85b1ded2fa3327d025c1a81e
4
- data.tar.gz: c9e93245233220e223a622c79a65b52d57dd09bebe2eef98da754e441b9d4181
3
+ metadata.gz: 793034b02b1dde38856e5e7d7192b6b281aae453d6ff060ddd4478147bf066fc
4
+ data.tar.gz: 4fdc7f52bc5d36816a3dfc94c59e4273155af358cb2d57629402e6ad4582090b
5
5
  SHA512:
6
- metadata.gz: 2c10a45c3b897802f663b78379b8d6fd84243635b5cd794882ce8200592979a22afa5ede50457bd7195a10d72f5de19320232110b47aff41c3ac83858412aebb
7
- data.tar.gz: cf3238c4a4e58e0019156797276648eae403b1cd71aac692360d4476595c271c317dca6c0b7b7f8d45c18d854dfee3979886847333e657813deb5419d9553961
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-core"
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
@@ -90,7 +90,7 @@ end
90
90
  task :clean do
91
91
  sh 'git clean -fdx lib'
92
92
  sh 'rm -rf hypothesis-specs*.gem'
93
- sh 'rm -rf target'
93
+ sh 'rm -rf ../target'
94
94
  end
95
95
 
96
96
  task gem: :clean do
@@ -1,7 +1,7 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  require 'helix_runtime'
4
- require 'hypothesis-ruby-core/native'
4
+ require 'hypothesis-ruby/native'
5
5
 
6
6
  module Hypothesis
7
7
  class Engine
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.0.11
4
+ version: 0.0.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - David R. Maciver