dither 0.2.2 → 0.2.5
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/Rakefile +8 -2
- data/dither.gemspec +1 -3
- data/ext/dither/Aetg.java +51 -0
- data/ext/dither/AetgPairwise.java +258 -0
- data/ext/dither/ArrayLengthComparator.java +30 -0
- data/ext/dither/CombinatoricHelper.java +143 -0
- data/ext/dither/ConstraintHandler.java +120 -0
- data/ext/dither/Dither.java +155 -0
- data/ext/dither/DitherError.java +45 -0
- data/ext/dither/IndexArrayPair.java +40 -0
- data/ext/dither/Ipog.java +405 -0
- data/ext/dither/Pair.java +61 -0
- data/ext/dither/base_constraint_handler.h +4 -1
- data/ext/dither/combinations.h +21 -12
- data/ext/dither/ipog.cc +71 -37
- data/ext/dither/ipog.h +12 -7
- data/ext/dither/simple_constraint_handler.cc +14 -2
- data/ext/dither/simple_constraint_handler.h +2 -1
- data/lib/dither.rb +1 -2
- data/lib/dither/version.rb +1 -1
- metadata +13 -3
data/lib/dither/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dither
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.5
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jason Gowan
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-12-
|
11
|
+
date: 2015-12-28 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rspec
|
@@ -97,6 +97,16 @@ files:
|
|
97
97
|
- README.md
|
98
98
|
- Rakefile
|
99
99
|
- dither.gemspec
|
100
|
+
- ext/dither/Aetg.java
|
101
|
+
- ext/dither/AetgPairwise.java
|
102
|
+
- ext/dither/ArrayLengthComparator.java
|
103
|
+
- ext/dither/CombinatoricHelper.java
|
104
|
+
- ext/dither/ConstraintHandler.java
|
105
|
+
- ext/dither/Dither.java
|
106
|
+
- ext/dither/DitherError.java
|
107
|
+
- ext/dither/IndexArrayPair.java
|
108
|
+
- ext/dither/Ipog.java
|
109
|
+
- ext/dither/Pair.java
|
100
110
|
- ext/dither/README.md
|
101
111
|
- ext/dither/base_constraint_handler.h
|
102
112
|
- ext/dither/combinations.h
|
@@ -140,7 +150,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
140
150
|
version: '0'
|
141
151
|
requirements: []
|
142
152
|
rubyforge_project: dither
|
143
|
-
rubygems_version: 2.
|
153
|
+
rubygems_version: 2.4.5
|
144
154
|
signing_key:
|
145
155
|
specification_version: 4
|
146
156
|
summary: Collection of test generation strategies
|