ruby-cbc 0.3.16 → 0.3.19

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
- SHA1:
3
- metadata.gz: 20e463b7c62b654cdd7299eccb0a099f3b0e35e7
4
- data.tar.gz: b60149c551f055bc1d1264363291cb62df927164
2
+ SHA256:
3
+ metadata.gz: 1459df7aa1e2ba06770e40ab595f96aa52f17739a6f757cce3e870ea335874b9
4
+ data.tar.gz: 4327f8b90505f8884b1cf9b22a45f88e0a4a1a0358ec34e162c32d8efb8ba3ba
5
5
  SHA512:
6
- metadata.gz: 192219d68fe92f168f9566b1fd4a7d703e36f4bfe048d6f5745eff825f9bab73ad726b597165f7113a26370841949a76624d8bd97f457546d1d505823d444c0d
7
- data.tar.gz: bdd8e5306450aebdc381f66ea9392bc01106ef56a124377ffc6a2d11b4716529cd2f24be8d755c8c8285642b8d8ea80df7066b844a2e7d115dda757a888c9aa9
6
+ metadata.gz: 2017f150a9d7c52ac2b2f0797021ddbed619cf33016c4f06c154ae99c116af1d4cd3b3a8fba6425081279d8f312cfd26c1dc4599899acc071887800645feb6fd
7
+ data.tar.gz: c6a36805f9d9270ee2273fd7d5b82c6242f37550f04f2f6ceb6b210959d699675c55f20922336a062dec0745b46e0c81390a30616eea0066787cf652a0158e23
data/.rubocop.yml CHANGED
@@ -1 +1,3 @@
1
- inherit_from: ".ruby-style.yml"
1
+ inherit_from:
2
+ - .rubocop_todo.yml
3
+ - .ruby-style.yml
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,51 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2018-06-21 09:52:21 +0200 using RuboCop version 0.57.2.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 9
10
+ Metrics/AbcSize:
11
+ Max: 61
12
+
13
+ # Offense count: 3
14
+ # Configuration parameters: CountComments, ExcludedMethods.
15
+ Metrics/BlockLength:
16
+ Max: 120
17
+
18
+ # Offense count: 2
19
+ # Configuration parameters: CountComments.
20
+ Metrics/ClassLength:
21
+ Max: 190
22
+
23
+ # Offense count: 2
24
+ Metrics/CyclomaticComplexity:
25
+ Max: 11
26
+
27
+ # Offense count: 12
28
+ # Configuration parameters: CountComments.
29
+ Metrics/MethodLength:
30
+ Max: 54
31
+
32
+ # Offense count: 2
33
+ Metrics/PerceivedComplexity:
34
+ Max: 11
35
+
36
+ # Offense count: 12
37
+ Style/Documentation:
38
+ Exclude:
39
+ - 'spec/**/*'
40
+ - 'test/**/*'
41
+ - 'lib/ruby-cbc.rb'
42
+ - 'lib/ruby-cbc/conflict_solver.rb'
43
+ - 'lib/ruby-cbc/ilp/constant.rb'
44
+ - 'lib/ruby-cbc/ilp/constraint.rb'
45
+ - 'lib/ruby-cbc/ilp/objective.rb'
46
+ - 'lib/ruby-cbc/ilp/term.rb'
47
+ - 'lib/ruby-cbc/ilp/term_array.rb'
48
+ - 'lib/ruby-cbc/ilp/var.rb'
49
+ - 'lib/ruby-cbc/model.rb'
50
+ - 'lib/ruby-cbc/problem.rb'
51
+ - 'lib/ruby-cbc/utils/compressed_row_storage.rb'