Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
rglpk / rglpk.gemspec
Size: Mime:
# Generated by jeweler
# DO NOT EDIT THIS FILE DIRECTLY
# Instead, edit Jeweler::Tasks in Rakefile, and run 'rake gemspec'
# -*- encoding: utf-8 -*-

Gem::Specification.new do |s|
  s.name = %q{rglpk}
  s.version = "0.3.2"

  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
  s.authors = ["Alex Gutteridge", "William Taysom"]
  s.date = %q{2012-01-03}
  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.

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.

See [github](http://github.com/wtaysom/rglpk) for installation instructions.  All bug reports, feature requests and patches are welcome.  Enjoy!}
  s.email = ["alexg@kuicr.kyoto-u.ac.jp", "wtaysom@gmail.com"]
  s.extensions = ["ext/extconf.rb", "ext/extconf.rb"]
  s.extra_rdoc_files = [
    "ChangeLog.md",
    "README.md"
  ]
  s.files = [
    "ChangeLog.md",
    "License.txt",
    "README.md",
    "Rakefile",
    "VERSION",
    "ext/extconf.rb",
    "ext/glpk_wrapper.c",
    "lib/rglpk.rb",
    "rglpk.gemspec",
    "swig/Makefile.in",
    "swig/configure.in",
    "swig/glpk.i",
    "test/helper.rb",
    "test/test_all.rb",
    "test/test_basic.rb",
    "test/test_brief_example.rb",
    "test/test_memory_leaks.rb",
    "test/test_problem_kind.rb"
  ]
  s.homepage = %q{http://rglpk.rubyforge.org/}
  s.rdoc_options = ["--exclude", "."]
  s.require_paths = ["lib", "ext", "ext"]
  s.rubyforge_project = %q{rglpk}
  s.rubygems_version = %q{1.6.2}
  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.}

  if s.respond_to? :specification_version then
    s.specification_version = 3

    if Gem::Version.new(Gem::VERSION) >= Gem::Version.new('1.2.0') then
    else
    end
  else
  end
end