prop_check 1.0.1 → 1.0.2

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 92c7d32ca511178bcd51c8d5583b1e525ce6f7108c875704d956ae3b19b0511d
4
- data.tar.gz: ab8bb6b9b44c540938fcab33c4001978c88d380a45efcb5941e9c93a1d62e870
3
+ metadata.gz: d78c72da50f662a277a6e41039a55a9d60aa46551bf63c329fc0a4aae3121615
4
+ data.tar.gz: 7e50bafff5e1bd09058d28af48e418864d4bc7bcedbe9d96b1c44cd4d4cc1b84
5
5
  SHA512:
6
- metadata.gz: 577df1c50915e8c78492f22444183aa84a58297e74044dab6577d5640eff45ff9b541ab694c7a9e6e8833b89794b4f89693b259f3b57b525d9180e7d9652dc27
7
- data.tar.gz: f0c9b489e637c589e171a68c35052b1f4403505037d9d1ba99e971ce3ed81af9eafd2f58981a2e2326e0c1d417bdf7456783725ac357b07195f7f48b61931ec1
6
+ metadata.gz: 45c7447b0243c42d8af51147395301010ccc8a9f1d7c63653af5c11d2b3f3dc65250f5a4f36f01548b2336f383a48089de6b10f73566ad0d4753523ff19bdcdc
7
+ data.tar.gz: 4392af75a1c220df90167bc008dcf02b9d6d2c5756582d1314f50df6e57d9b0e5d3fe8668dd887543aed65c5a1edca1800fccb0480a990eaf81e69ae8da96150
@@ -17,15 +17,14 @@ jobs:
17
17
  matrix:
18
18
  # NOTE: We're stopping testing Ruby < 3.0 since prop_check version 1.0.0
19
19
  # It will _probably_ still work but as they're end-of-life, no guarantees!
20
- ruby-version: ['3.0', '3.1', '3.2']
20
+ ruby-version: ['3.0', '3.1', '3.2', '3.3', '3.4']
21
21
 
22
22
  steps:
23
23
  - uses: actions/checkout@v3
24
24
  - name: Set up Ruby
25
25
  # To automatically get bug fixes and new Ruby versions for ruby/setup-ruby,
26
26
  # change this to (see https://github.com/ruby/setup-ruby#versioning):
27
- # uses: ruby/setup-ruby@v1
28
- uses: ruby/setup-ruby@0a29871fe2b0200a17a4497bae54fe5df0d973aa # v1.115.3
27
+ uses: ruby/setup-ruby@v1
29
28
  with:
30
29
  ruby-version: ${{ matrix.ruby-version }}
31
30
  bundler-cache: true # runs 'bundle install' and caches installed gems automatically
data/CHANGELOG.md CHANGED
@@ -1,3 +1,8 @@
1
+ - 1.0.2
2
+ - Fixes:
3
+ - When calling `Generator#sample` or `Generator#call`, the options are now merged with the default options _once_, resulting in a slight speedup. (c.f. [#24](https://github.com/Qqwy/ruby-prop_check/pull/24), thank you, @niku!)
4
+ - Documentation fixes:
5
+ - Ordering of Property::Configuration options is now alphabetical. (c.f. [#23](https://github.com/Qqwy/ruby-prop_check/pull/23). Thank you, @niku!)
1
6
  - 1.0.1
2
7
  - Fixes:
3
8
  - The invariants of the of the `min` option for the `array` generator were not checked correctly, sometimes causing arrays with too small lengths to be generated. (c.f. [#26](https://github.com/Qqwy/ruby-prop_check/pull/26). Thank you, @olafura!)
@@ -55,7 +55,7 @@ module PropCheck
55
55
  # >> Generators.integer.call(size: 1000, rng: Random.new(42))
56
56
  # => 126
57
57
  def call(**kwargs)
58
- generate(**@@default_kwargs.merge(kwargs)).root
58
+ generate(**kwargs).root
59
59
  end
60
60
 
61
61
  ##
@@ -63,7 +63,7 @@ module PropCheck
63
63
  # This is mostly useful for debugging if a generator behaves as you intend it to.
64
64
  def sample(num_of_samples = 10, **kwargs)
65
65
  num_of_samples.times.map do
66
- call(**@@default_kwargs.merge(kwargs))
66
+ call(**kwargs)
67
67
  end
68
68
  end
69
69
 
@@ -12,13 +12,12 @@ module PropCheck
12
12
  # - `max_generate_attempts:` The amount of times the library tries a generator in total
13
13
  # before raising `Errors::GeneratorExhaustedError`. c.f. `PropCheck::Generator#where`. (Default: 10_000)
14
14
  # - `max_shrink_steps:` The amount of times shrinking is attempted. (Default: 10_000)
15
- # - `max_consecutive_attempts:`
16
15
  # - `max_consecutive_attempts:` The amount of times the library tries a filtered generator consecutively
17
16
  # again before raising `Errors::GeneratorExhaustedError`. c.f. `PropCheck::Generator#where`. (Default: 10_000)
18
17
  # - `default_epoch:` The 'base' value to use for date/time generators like
19
18
  # `PropCheck::Generators#date` `PropCheck::Generators#future_date` `PropCheck::Generators#time`, etc.
20
19
  # (Default: `DateTime.now`)
21
- # - `resize_function` A proc that can be used to resize _all_ generators.
20
+ # - `resize_function:` A proc that can be used to resize _all_ generators.
22
21
  # Takes the current size as integer and should return a new integer.
23
22
  # (Default: `proc { |size| size }`)
24
23
  Configuration = Struct.new(
@@ -1,3 +1,3 @@
1
1
  module PropCheck
2
- VERSION = '1.0.1'
2
+ VERSION = '1.0.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: prop_check
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.1
4
+ version: 1.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Qqwy/Marten Wijnja