ruby-cbc 0.2.4 → 0.2.5
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/LICENSE +21 -0
- data/lib/ruby-cbc/version.rb +1 -1
- data/ruby-cbc.gemspec +1 -8
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d14f860956338d307ca81c97bdbffa02c18fa1fe
|
4
|
+
data.tar.gz: 8a6bccaf1dbfddb49b480763de807c9b9f5b4cc7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c9262c9b81f0e9a56f9dad3aca561815e50fd664f5f4a94f55cc3f27a7fb975ca4e6857a3ae94498e1a02babe640c2bb56ec24f76825eb33af1a6ed833490bd
|
7
|
+
data.tar.gz: d6a23b5ba7347fbe5168a5a823f32e9a267e4a7e10dfaa596dbbb0fecb5802280c096a36a39b55d6bf506d19b81bd9e4dd7768a3075fe499bea8ca7589c5209e
|
data/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
The MIT License (MIT)
|
2
|
+
|
3
|
+
Copyright © 2016 Guillaume Verger
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the "Software"),
|
7
|
+
to deal in the Software without restriction, including without limitation
|
8
|
+
the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
9
|
+
and/or sell copies of the Software, and to permit persons to whom the
|
10
|
+
Software is furnished to do so, subject to the following conditions:
|
11
|
+
|
12
|
+
The above copyright notice and this permission notice shall be included
|
13
|
+
in all copies or substantial portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
16
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
17
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
18
|
+
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
19
|
+
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
|
20
|
+
TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
|
21
|
+
OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/lib/ruby-cbc/version.rb
CHANGED
data/ruby-cbc.gemspec
CHANGED
@@ -12,14 +12,7 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.summary = "Wrapper around Cbc Linear Programming Solver"
|
13
13
|
spec.description = "Wrapper around Cbc Linear Programming Solver"
|
14
14
|
spec.homepage = "https://github.com/gverger/ruby-cbc"
|
15
|
-
|
16
|
-
# Prevent pushing this gem to RubyGems.org by setting 'allowed_push_host', or
|
17
|
-
# delete this section to allow pushing this gem to any host.
|
18
|
-
if spec.respond_to?(:metadata)
|
19
|
-
# spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
|
20
|
-
else
|
21
|
-
raise "RubyGems 2.0 or newer is required to protect against public gem pushes."
|
22
|
-
end
|
15
|
+
spec.license = "MIT"
|
23
16
|
|
24
17
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
25
18
|
spec.bindir = "exe"
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ruby-cbc
|
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
|
- Guillaume Verger
|
@@ -119,6 +119,7 @@ files:
|
|
119
119
|
- ".rspec"
|
120
120
|
- ".travis.yml"
|
121
121
|
- Gemfile
|
122
|
+
- LICENSE
|
122
123
|
- README.md
|
123
124
|
- Rakefile
|
124
125
|
- bin/console
|
@@ -135,7 +136,8 @@ files:
|
|
135
136
|
- lib/ruby-cbc/version.rb
|
136
137
|
- ruby-cbc.gemspec
|
137
138
|
homepage: https://github.com/gverger/ruby-cbc
|
138
|
-
licenses:
|
139
|
+
licenses:
|
140
|
+
- MIT
|
139
141
|
metadata: {}
|
140
142
|
post_install_message:
|
141
143
|
rdoc_options: []
|