rglpk 0.2.1 → 0.2.2

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.
Files changed (5) hide show
  1. data/ChangeLog.md +4 -0
  2. data/Rakefile +1 -0
  3. data/VERSION +1 -1
  4. data/rglpk.gemspec +3 -3
  5. metadata +6 -4
@@ -1,3 +1,7 @@
1
+ # rglpk 0.2.2 2010-10-25
2
+
3
+ * Exclude RDoc generation since we don't yet have any.
4
+
1
5
  # rglpk 0.2.1 2010-10-13
2
6
 
3
7
  * Point readers to gethub in README.
data/Rakefile CHANGED
@@ -27,6 +27,7 @@ begin
27
27
 
28
28
  gemspec.extensions << 'ext/extconf.rb'
29
29
  gemspec.require_paths << 'ext'
30
+ gemspec.rdoc_options << "--exclude" << "."
30
31
  end
31
32
  Jeweler::GemcutterTasks.new
32
33
  rescue LoadError
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.1
1
+ 0.2.2
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{rglpk}
8
- s.version = "0.2.1"
8
+ s.version = "0.2.2"
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
- s.date = %q{2010-10-13}
12
+ s.date = %q{2010-10-25}
13
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.
@@ -42,7 +42,7 @@ See [github](http://github.com/wtaysom/rglpk) for installation instructions. Al
42
42
  "test/test_problem_kind.rb"
43
43
  ]
44
44
  s.homepage = %q{http://rglpk.rubyforge.org/}
45
- s.rdoc_options = ["--charset=UTF-8"]
45
+ s.rdoc_options = ["--charset=UTF-8", "--exclude", "."]
46
46
  s.require_paths = ["lib", "ext", "ext"]
47
47
  s.rubyforge_project = %q{rglpk}
48
48
  s.rubygems_version = %q{1.3.7}
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: 21
4
+ hash: 19
5
5
  prerelease: false
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 1
10
- version: 0.2.1
9
+ - 2
10
+ version: 0.2.2
11
11
  platform: ruby
12
12
  authors:
13
13
  - Alex Gutteridge
@@ -16,7 +16,7 @@ autorequire:
16
16
  bindir: bin
17
17
  cert_chain: []
18
18
 
19
- date: 2010-10-13 00:00:00 +08:00
19
+ date: 2010-10-25 00:00:00 +08:00
20
20
  default_executable:
21
21
  dependencies: []
22
22
 
@@ -63,6 +63,8 @@ licenses: []
63
63
  post_install_message:
64
64
  rdoc_options:
65
65
  - --charset=UTF-8
66
+ - --exclude
67
+ - .
66
68
  require_paths:
67
69
  - lib
68
70
  - ext