# -*- encoding: utf-8 -*- # stub: octave-ruby 1.0.8 ruby libext # stub: ext/octave_api/extconf.rb Gem::Specification.new do |s| s.name = "octave-ruby".freeze s.version = "1.0.8".freeze s.required_rubygems_version = Gem::Requirement.new(">= 0".freeze) if s.respond_to? :required_rubygems_version= s.require_paths = ["lib".freeze, "ext".freeze] s.authors = ["Jonathan Younger".freeze] s.date = "2008-11-26" s.description = "== USAGE: require 'octave' engine = Octave::Engine.new engine.eval \"123.456 * 789.101112\" engine.rand(10) matrix = Octave::Matrix.new(20, 400) 20.times { |m| 400.times { |n| matrix[m, n] = rand } } engine.put_variable(\"m\", matrix) engine.save \"/tmp/20_x_400_matrix\" == REQUIREMENTS: * Octave * GCC or some other compiler to build the included extension * Mocha (For testing only)".freeze s.email = ["jonathan.younger@lipomics.com".freeze] s.extensions = ["ext/octave_api/extconf.rb".freeze] s.extra_rdoc_files = ["History.txt".freeze, "LICENSE.txt".freeze, "Manifest.txt".freeze, "README.txt".freeze] s.files = ["History.txt".freeze, "LICENSE.txt".freeze, "Manifest.txt".freeze, "README.txt".freeze, "Rakefile".freeze, "ext/octave_api/MANIFEST".freeze, "ext/octave_api/Makefile".freeze, "ext/octave_api/extconf.rb".freeze, "ext/octave_api/octave-includes.h".freeze, "ext/octave_api/octave-ruby.cpp".freeze, "ext/octave_api/octave-ruby.h".freeze, "ext/octave_api/octave_api.c".freeze, "ext/octave_api/octave_api.h".freeze, "ext/octave_api/or-array.cpp".freeze, "ext/octave_api/or-array.h".freeze, "ext/octave_api/or-boolean_matrix.cpp".freeze, "ext/octave_api/or-boolean_matrix.h".freeze, "ext/octave_api/or-cell_matrix.cpp".freeze, "ext/octave_api/or-cell_matrix.h".freeze, "ext/octave_api/or-hash.cpp".freeze, "ext/octave_api/or-hash.h".freeze, "ext/octave_api/or-matrix.cpp".freeze, "ext/octave_api/or-matrix.h".freeze, "ext/octave_api/or-string.cpp".freeze, "ext/octave_api/or-string.h".freeze, "ext/octave_api/or-struct_matrix.cpp".freeze, "ext/octave_api/or-struct_matrix.h".freeze, "ext/octave_api/or-variable.cpp".freeze, "ext/octave_api/or-variable.h".freeze, "lib/octave.rb".freeze, "lib/octave/driver/native/driver.rb".freeze, "lib/octave/engine.rb".freeze, "lib/octave/matrix.rb".freeze, "lib/octave/version.rb".freeze, "setup.rb".freeze, "test/driver/native/test_conversions.rb".freeze, "test/driver/native/test_driver.rb".freeze, "test/test_engine.rb".freeze] s.homepage = "http://octave-ruby.rubyforge.org/".freeze s.rdoc_options = ["--main".freeze, "README.txt".freeze] s.rubygems_version = "3.5.10".freeze s.summary = "A Ruby interface to the Octave interpreted language.".freeze s.test_files = ["test/driver/native/test_conversions.rb".freeze, "test/driver/native/test_driver.rb".freeze, "test/test_engine.rb".freeze] s.specification_version = 2 s.add_development_dependency(%q.freeze, [">= 1.8.2".freeze]) end