rglpk 0.2.0 → 0.2.1
Sign up to get free protection for your applications and to get access to all the features.
- data/ChangeLog.md +4 -0
- data/README.md +3 -3
- data/Rakefile +1 -0
- data/VERSION +1 -1
- data/rglpk.gemspec +5 -4
- metadata +7 -7
data/ChangeLog.md
CHANGED
data/README.md
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
# Introduction
|
2
2
|
|
3
|
-
Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library.
|
3
|
+
Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library. The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems.
|
4
4
|
|
5
5
|
Rglpk (pronounced as "wriggle-pick") is currently in alpha status and the API should be considered subject to change. Rglpk uses [Swig](http://www.swig.org/) to initially wrap the C GLPK library (using a Swig wrapper originally developed by Nigel Galloway) and then a pure Ruby library to wrap the Swig code in a more friendly OO-style.
|
6
6
|
|
7
|
-
All bug reports, feature requests and patches are welcome.
|
7
|
+
See [github](http://github.com/wtaysom/rglpk) for installation instructions. All bug reports, feature requests and patches are welcome. Enjoy!
|
8
8
|
|
9
9
|
# Installation
|
10
10
|
|
@@ -25,7 +25,7 @@ The underlying C library is wrapped using Swig. We keep an up-to-date copy of t
|
|
25
25
|
|
26
26
|
# Documentation
|
27
27
|
|
28
|
-
Rglpk provides two primary files: ext/glpk_wrapper.c which is a Swig generated wrapper and lib/rglpk.rb which provide a nicer OO-orientated interface.
|
28
|
+
Rglpk provides two primary files: ext/glpk_wrapper.c which is a Swig generated wrapper and lib/rglpk.rb which provide a nicer OO-orientated interface. You should only ever need to call methods of the Rglpk class defined lib/rglpk.rb.
|
29
29
|
|
30
30
|
An example:
|
31
31
|
|
data/Rakefile
CHANGED
@@ -20,6 +20,7 @@ begin
|
|
20
20
|
gemspec.summary = paragraphs_of("README.md", 1)
|
21
21
|
gemspec.description = paragraphs_of("README.md", 1..3)
|
22
22
|
gemspec.homepage = "http://rglpk.rubyforge.org/"
|
23
|
+
gemspec.rubyforge_project = "rglpk"
|
23
24
|
|
24
25
|
gemspec.authors = ["Alex Gutteridge", "William Taysom"]
|
25
26
|
gemspec.email = ["alexg@kuicr.kyoto-u.ac.jp", "wtaysom@gmail.com"]
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.1
|
data/rglpk.gemspec
CHANGED
@@ -5,16 +5,16 @@
|
|
5
5
|
|
6
6
|
Gem::Specification.new do |s|
|
7
7
|
s.name = %q{rglpk}
|
8
|
-
s.version = "0.2.
|
8
|
+
s.version = "0.2.1"
|
9
9
|
|
10
10
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
11
11
|
s.authors = ["Alex Gutteridge", "William Taysom"]
|
12
12
|
s.date = %q{2010-10-13}
|
13
|
-
s.description = %q{Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library.
|
13
|
+
s.description = %q{Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library. The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems.
|
14
14
|
|
15
15
|
Rglpk (pronounced as "wriggle-pick") is currently in alpha status and the API should be considered subject to change. Rglpk uses [Swig](http://www.swig.org/) to initially wrap the C GLPK library (using a Swig wrapper originally developed by Nigel Galloway) and then a pure Ruby library to wrap the Swig code in a more friendly OO-style.
|
16
16
|
|
17
|
-
All bug reports, feature requests and patches are welcome.
|
17
|
+
See [github](http://github.com/wtaysom/rglpk) for installation instructions. All bug reports, feature requests and patches are welcome. Enjoy!}
|
18
18
|
s.email = ["alexg@kuicr.kyoto-u.ac.jp", "wtaysom@gmail.com"]
|
19
19
|
s.extensions = ["ext/extconf.rb", "ext/extconf.rb"]
|
20
20
|
s.extra_rdoc_files = [
|
@@ -44,8 +44,9 @@ All bug reports, feature requests and patches are welcome. Please email alexg (a
|
|
44
44
|
s.homepage = %q{http://rglpk.rubyforge.org/}
|
45
45
|
s.rdoc_options = ["--charset=UTF-8"]
|
46
46
|
s.require_paths = ["lib", "ext", "ext"]
|
47
|
+
s.rubyforge_project = %q{rglpk}
|
47
48
|
s.rubygems_version = %q{1.3.7}
|
48
|
-
s.summary = %q{Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library.
|
49
|
+
s.summary = %q{Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library. The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems.}
|
49
50
|
s.test_files = [
|
50
51
|
"test/helper.rb",
|
51
52
|
"test/test_all.rb",
|
metadata
CHANGED
@@ -1,13 +1,13 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rglpk
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
hash:
|
4
|
+
hash: 21
|
5
5
|
prerelease: false
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 2
|
9
|
-
-
|
10
|
-
version: 0.2.
|
9
|
+
- 1
|
10
|
+
version: 0.2.1
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Alex Gutteridge
|
@@ -21,11 +21,11 @@ default_executable:
|
|
21
21
|
dependencies: []
|
22
22
|
|
23
23
|
description: |-
|
24
|
-
Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library.
|
24
|
+
Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library. The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems.
|
25
25
|
|
26
26
|
Rglpk (pronounced as "wriggle-pick") is currently in alpha status and the API should be considered subject to change. Rglpk uses [Swig](http://www.swig.org/) to initially wrap the C GLPK library (using a Swig wrapper originally developed by Nigel Galloway) and then a pure Ruby library to wrap the Swig code in a more friendly OO-style.
|
27
27
|
|
28
|
-
All bug reports, feature requests and patches are welcome.
|
28
|
+
See [github](http://github.com/wtaysom/rglpk) for installation instructions. All bug reports, feature requests and patches are welcome. Enjoy!
|
29
29
|
email:
|
30
30
|
- alexg@kuicr.kyoto-u.ac.jp
|
31
31
|
- wtaysom@gmail.com
|
@@ -87,11 +87,11 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
87
|
version: "0"
|
88
88
|
requirements: []
|
89
89
|
|
90
|
-
rubyforge_project:
|
90
|
+
rubyforge_project: rglpk
|
91
91
|
rubygems_version: 1.3.7
|
92
92
|
signing_key:
|
93
93
|
specification_version: 3
|
94
|
-
summary: Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library.
|
94
|
+
summary: Rglpk is a package providing a Ruby wrapper to the [GNU GLPK](http://www.gnu.org/software/glpk/) library. The GLPK (GNU Linear Programming Kit) package is intended for solving large-scale linear programming (LP), mixed integer programming (MIP), and other related problems.
|
95
95
|
test_files:
|
96
96
|
- test/helper.rb
|
97
97
|
- test/test_all.rb
|