hypothesis-specs 0.6.0 → 0.6.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/Cargo.toml +1 -1
  4. data/src/lib.rs +5 -0
  5. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 8be81d7cc1c3be388507a5776c3ec411b382e8292be1678bc30ffcccac5678f7
4
- data.tar.gz: 269f363638fe7d27823b159564772edd31a078127d04ac65fc04dd6b1404f2f0
3
+ metadata.gz: a79509b16d94eae8514d1601878d3fb5a1ba1885f385ae7caf27673874508a51
4
+ data.tar.gz: ebc2a3661f7a1d9b82c839faed66006de0f95357e4615645788cbe3fd074674d
5
5
  SHA512:
6
- metadata.gz: 34ec25611305e1742428cbba1f1a171d2b5fc5068d96a6bacf565c24fe38c7ad4b5ff3100cb86138f744bd7276a413e3c03935704593be352063d176dacbb9ba
7
- data.tar.gz: 27212f3409766297782d0e7025aff4012d72bf20c61325e456172adee58076cd48b159ea912c06fe7b3c5045f99631f987df79aa5f65139d7f39b70705a658f6
6
+ metadata.gz: dba3693d2d2ad38d5efa17ffecf2c70148b6cc1a5e5e2c8e7c89673a42efb183bd1fb374f2129cd81cffe974da90514a8f44d73e4c46602596e4910d98bc3340
7
+ data.tar.gz: 7dd4894162024a4bfc45df2de1b2aa72803d835f5e4f90f87b8cf5397e88ac48d9e6806440622f5f89b4a4cb9eea60429568404b7c965a099733c5d8d008e2a3
data/CHANGELOG.md CHANGED
@@ -1,3 +1,7 @@
1
+ # Hypothesis for Ruby 0.6.1 (2021-02-01)
2
+
3
+ This patch contains minor performance improvements for `HypothesisCoreIntegers` class instantiation.
4
+
1
5
  # Hypothesis for Ruby 0.6.0 (2021-01-27)
2
6
 
3
7
  Adds support for skipping shrinking. While shrinking is extremely helpful and important in general, it has the potential to be quite time consuming. It can be useful to observe a raw failure before choosing to allow the engine to try to shrink. [hypothesis-python](https://hypothesis.readthedocs.io/en/latest/settings.html#phases) already provides the ability to skip shrinking, so there is precedent for this being useful. While `hypothesis-ruby` does not have the concept of other "Phases" yet, we can still start off the API by using this concept.
data/Cargo.toml CHANGED
@@ -11,4 +11,4 @@ crate-type = ["cdylib"]
11
11
  rutie = {version="0.8.1"}
12
12
  lazy_static = "1.4.0"
13
13
  rand = '0.3'
14
- conjecture = '0.6.0'
14
+ conjecture = '0.7.0'
data/src/lib.rs CHANGED
@@ -50,6 +50,7 @@ wrappable_struct!(
50
50
 
51
51
  class!(HypothesisCoreDataSource);
52
52
 
53
+ #[rustfmt::skip]
53
54
  methods!(
54
55
  HypothesisCoreDataSource,
55
56
  itself,
@@ -149,6 +150,7 @@ wrappable_struct!(
149
150
 
150
151
  class!(HypothesisCoreEngine);
151
152
 
153
+ #[rustfmt::skip]
152
154
  methods!(
153
155
  HypothesisCoreEngine,
154
156
  itself,
@@ -277,6 +279,7 @@ wrappable_struct!(
277
279
 
278
280
  class!(HypothesisCoreIntegers);
279
281
 
282
+ #[rustfmt::skip]
280
283
  methods!(
281
284
  HypothesisCoreIntegers,
282
285
  itself,
@@ -333,6 +336,7 @@ wrappable_struct!(
333
336
 
334
337
  class!(HypothesisCoreRepeatValues);
335
338
 
339
+ #[rustfmt::skip]
336
340
  methods!(
337
341
  HypothesisCoreRepeatValues,
338
342
  itself,
@@ -394,6 +398,7 @@ wrappable_struct!(
394
398
 
395
399
  class!(HypothesisCoreBoundedIntegers);
396
400
 
401
+ #[rustfmt::skip]
397
402
  methods!(
398
403
  HypothesisCoreBoundedIntegers,
399
404
  itself,
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.6.0
4
+ version: 0.6.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-01-27 00:00:00.000000000 Z
12
+ date: 2021-02-01 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: rutie