prop_check 0.6.0 → 0.6.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.gitignore +3 -0
- data/.travis.yml +1 -1
- data/lib/prop_check/version.rb +1 -1
- data/prop_check.gemspec +4 -2
- metadata +4 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a8b10e33dfef86ed35b2a13ff0261552bbd2c7d7f39a6fa6997bedb4c57651f
|
4
|
+
data.tar.gz: c2400550a28e15baa8b4d7323adea18ec3aa858384f774b76c59f6ff87f38c82
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 758c27825f78f4d51ad6ff076f5866d2c0d7ee0a0b6f150b4247d9acb6804676c10d1223278506a2c1f2b1ecd683d8951f4c2331d6e0063cd8039fd6dedbdd94
|
7
|
+
data.tar.gz: f3db2b04c823a7bc29afa6dd23e58c1c7696873d836b2f42ad0af70f150ba623fbd67b8204e521c544e0a7600bd094c0b4971d6f2ceac37c456e1a050716aac5
|
data/.gitignore
CHANGED
data/.travis.yml
CHANGED
data/lib/prop_check/version.rb
CHANGED
data/prop_check.gemspec
CHANGED
@@ -9,8 +9,8 @@ Gem::Specification.new do |spec|
|
|
9
9
|
spec.authors = ["Qqwy/Wiebe-Marten Wijnja"]
|
10
10
|
spec.email = ["w-m@wmcode.nl"]
|
11
11
|
|
12
|
-
spec.summary = %q{PropCheck allows you to do property-based testing
|
13
|
-
spec.description = %q{PropCheck allows you to do property-based testing
|
12
|
+
spec.summary = %q{PropCheck allows you to do property-based testing, including shrinking.}
|
13
|
+
spec.description = %q{PropCheck allows you to do property-based testing, including shrinking. (akin to Haskell's QuickCheck, Erlang's PropEr, Elixir's StreamData). This means that your test are run many times with different, autogenerated inputs, and as soon as a failing case is found, this input is simplified, in the end giving you back the simplest input that made the test fail.}
|
14
14
|
spec.homepage = "https://github.com/Qqwy/ruby-prop_check/"
|
15
15
|
spec.license = "MIT"
|
16
16
|
|
@@ -34,6 +34,8 @@ Gem::Specification.new do |spec|
|
|
34
34
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
35
35
|
spec.require_paths = ["lib"]
|
36
36
|
|
37
|
+
spec.required_ruby_version = '>= 2.5.1'
|
38
|
+
|
37
39
|
spec.add_development_dependency "bundler", "~> 2.0"
|
38
40
|
spec.add_development_dependency "rake", "~> 10.0"
|
39
41
|
spec.add_development_dependency "rspec", "~> 3.0"
|
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: 0.6.
|
4
|
+
version: 0.6.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Qqwy/Wiebe-Marten Wijnja
|
@@ -52,7 +52,7 @@ dependencies:
|
|
52
52
|
- - "~>"
|
53
53
|
- !ruby/object:Gem::Version
|
54
54
|
version: '3.0'
|
55
|
-
description: PropCheck allows you to do property-based testing
|
55
|
+
description: PropCheck allows you to do property-based testing, including shrinking.
|
56
56
|
(akin to Haskell's QuickCheck, Erlang's PropEr, Elixir's StreamData). This means
|
57
57
|
that your test are run many times with different, autogenerated inputs, and as soon
|
58
58
|
as a failing case is found, this input is simplified, in the end giving you back
|
@@ -103,7 +103,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
103
103
|
requirements:
|
104
104
|
- - ">="
|
105
105
|
- !ruby/object:Gem::Version
|
106
|
-
version:
|
106
|
+
version: 2.5.1
|
107
107
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
108
108
|
requirements:
|
109
109
|
- - ">="
|
@@ -114,6 +114,5 @@ rubyforge_project:
|
|
114
114
|
rubygems_version: 2.7.6
|
115
115
|
signing_key:
|
116
116
|
specification_version: 4
|
117
|
-
summary: PropCheck allows you to do property-based testing
|
118
|
-
(akin to Haskell's QuickCheck, Erlang's PropEr, Elixir's StreamData)
|
117
|
+
summary: PropCheck allows you to do property-based testing, including shrinking.
|
119
118
|
test_files: []
|