mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* ext/bigdecimal/bigdecimal.c (BigDecimal_version): version 1.1.0.
* ext/bigdecimal/bigdecimal.gemspec: turn into a default gem. * tool/rbinstall.rb: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@32754 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
cef42f3058
commit
5edd7f07d8
4 changed files with 41 additions and 1 deletions
|
@ -1,3 +1,11 @@
|
||||||
|
Sat Jul 30 14:27:00 2011 Kenta Murata <mrkn@mrkn.jp>
|
||||||
|
|
||||||
|
* ext/bigdecimal/bigdecimal.c (BigDecimal_version): version 1.1.0.
|
||||||
|
|
||||||
|
* ext/bigdecimal/bigdecimal.gemspec: turn into a default gem.
|
||||||
|
|
||||||
|
* tool/rbinstall.rb: ditto.
|
||||||
|
|
||||||
Sat Jul 30 11:21:55 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
Sat Jul 30 11:21:55 2011 KOSAKI Motohiro <kosaki.motohiro@gmail.com>
|
||||||
|
|
||||||
* vm_core.h (ALT_STACK_SIZE): use MINSIGSTKSZ*2 instead of SIGSTKSZ*2.
|
* vm_core.h (ALT_STACK_SIZE): use MINSIGSTKSZ*2 instead of SIGSTKSZ*2.
|
||||||
|
|
|
@ -119,8 +119,9 @@ BigDecimal_version(VALUE self)
|
||||||
/*
|
/*
|
||||||
* 1.0.0: Ruby 1.8.0
|
* 1.0.0: Ruby 1.8.0
|
||||||
* 1.0.1: Ruby 1.8.1
|
* 1.0.1: Ruby 1.8.1
|
||||||
|
* 1.1.0: Ruby 1.9.3
|
||||||
*/
|
*/
|
||||||
return rb_str_new2("1.0.1");
|
return rb_str_new2("1.1.0");
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
|
30
ext/bigdecimal/bigdecimal.gemspec
Normal file
30
ext/bigdecimal/bigdecimal.gemspec
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
# -*- ruby -*-
|
||||||
|
_VERSION = "1.1.0"
|
||||||
|
|
||||||
|
Gem::Specification.new do |s|
|
||||||
|
s.name = "bigdecimal"
|
||||||
|
s.version = _VERSION
|
||||||
|
s.date = "2011-07-30"
|
||||||
|
s.summary = "Arbitrary-precision decimal floating-point number library."
|
||||||
|
s.email = "mrkn@mrkn.jp"
|
||||||
|
s.description = "This library provides arbitrary-precision decimal floating-point number class."
|
||||||
|
s.authors = ["Kenta Murata", "Shigeo Kobayashi"]
|
||||||
|
s.require_path = %[.]
|
||||||
|
s.files = %w[
|
||||||
|
bigdecimal.gemspec
|
||||||
|
bigdecimal.c
|
||||||
|
bigdecimal.h
|
||||||
|
README
|
||||||
|
depend extconf.rb
|
||||||
|
lib/bigdecimal/jacobian.rb
|
||||||
|
lib/bigdecimal/lcdcmp.rb
|
||||||
|
lib/bigdecimal/math.rb
|
||||||
|
lib/bigdecimal/newton.rb
|
||||||
|
lib/bigdecimal/util.rb
|
||||||
|
lib/bigdecimal/version.rb
|
||||||
|
sample/linear.rb
|
||||||
|
sample/nlsolve.rb
|
||||||
|
sample/pi.rb
|
||||||
|
]
|
||||||
|
s.extensions = %w[extconf.rb]
|
||||||
|
end
|
|
@ -546,6 +546,7 @@ install?(:ext, :comm, :gem) do
|
||||||
['minitest', 'lib/minitest/unit.rb'],
|
['minitest', 'lib/minitest/unit.rb'],
|
||||||
['json', 'ext/json/lib/json/version.rb'],
|
['json', 'ext/json/lib/json/version.rb'],
|
||||||
['io-console', 'ext/io/console/io-console.gemspec'],
|
['io-console', 'ext/io/console/io-console.gemspec'],
|
||||||
|
['bigdecimal', 'ext/bigdecimal/bigdecimal.gemspec'],
|
||||||
]
|
]
|
||||||
|
|
||||||
default_gems.each do |name, src, execs|
|
default_gems.each do |name, src, execs|
|
||||||
|
|
Loading…
Add table
Reference in a new issue