ruby-cbc 0.3.15 → 0.3.16

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f27bbe90dcea9456170297d5fa907aeda8a5c5f6
4
- data.tar.gz: e8ef373302d7e12843d1ac8b25685883629951ff
3
+ metadata.gz: 20e463b7c62b654cdd7299eccb0a099f3b0e35e7
4
+ data.tar.gz: b60149c551f055bc1d1264363291cb62df927164
5
5
  SHA512:
6
- metadata.gz: dbe7dc58db72d9708a7855cff1d1c2c6f8269c8bb9526b49dfb808fbe44fb76dceacf4aac7a5c2fb39a252a2961dd589a868e99ae5d8797a01621dec1d47dfbb
7
- data.tar.gz: 8fa8d2169f5395856af960309fa1a151d21a312b8a7dfe160ecdf705520a72e19e4a4e5762e1b7d72a6d23124aa5dc52b1205392e7e99d4d55c214d8aa268a09
6
+ metadata.gz: 192219d68fe92f168f9566b1fd4a7d703e36f4bfe048d6f5745eff825f9bab73ad726b597165f7113a26370841949a76624d8bd97f457546d1d505823d444c0d
7
+ data.tar.gz: bdd8e5306450aebdc381f66ea9392bc01106ef56a124377ffc6a2d11b4716529cd2f24be8d755c8c8285642b8d8ea80df7066b844a2e7d115dda757a888c9aa9
data/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  This gem is using Cbc, an Integer Linear Programming Library, to provide optimization problems solving
5
5
  to ruby. With Ruby-Cbc, you can model you problem, solve it and find conflicts in case of infeasibility.
6
6
 
7
- It uses the version 2.9.7 of Cbc, and requires the version 2.9.7 of gem cbc-wrapper.
7
+ It uses the version 2.9.9 of Cbc, and requires the version 2.9.9 of gem cbc-wrapper.
8
8
 
9
9
  ## Installation
10
10
 
@@ -1,3 +1,3 @@
1
1
  module Cbc
2
- VERSION = "0.3.15"
2
+ VERSION = "0.3.16"
3
3
  end
@@ -28,5 +28,5 @@ Gem::Specification.new do |spec|
28
28
  spec.add_development_dependency "benchmark-ips"
29
29
  spec.add_development_dependency "ruby-prof"
30
30
 
31
- spec.add_dependency "cbc-wrapper", '~> 2.9.9'
31
+ spec.add_dependency "cbc-wrapper", '~> 2.9.9.2'
32
32
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ruby-cbc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.15
4
+ version: 0.3.16
5
5
  platform: ruby
6
6
  authors:
7
7
  - Guillaume Verger
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2017-08-02 00:00:00.000000000 Z
11
+ date: 2017-08-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -128,14 +128,14 @@ dependencies:
128
128
  requirements:
129
129
  - - "~>"
130
130
  - !ruby/object:Gem::Version
131
- version: 2.9.9
131
+ version: 2.9.9.2
132
132
  type: :runtime
133
133
  prerelease: false
134
134
  version_requirements: !ruby/object:Gem::Requirement
135
135
  requirements:
136
136
  - - "~>"
137
137
  - !ruby/object:Gem::Version
138
- version: 2.9.9
138
+ version: 2.9.9.2
139
139
  description: Wrapper around Cbc Linear Programming Solver
140
140
  email:
141
141
  - verger.guillaume@gmail.com