summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-numeric-ext
AgeCommit message (Collapse)Author
2014-07-12Run mrbgem and core tests on minimum dependencies.take_cheeze
Solves #2355. In test drivers: * Uses `mrb_t_pass_result` to check and pass test result to main `mrb_state`. * Adds `mrb_init_test_driver` to init test `mrb_state`.
2014-03-17move summary of mrbgems in default gembox to its spectake_cheeze
2014-03-04add Integer#div and Float#div.Tomoyuki Sahara
2014-02-27Test for UTF-8 as mattn suggests.chasonr
The string is "Hello world" in Japanese. (hat tip: Google Translate.)
2014-02-26Update the Fixnum#chr test for UTF-8.chasonr
2014-01-07remove superfluous includescremno
- reduce compile time by a little bit (full-core: ~0.7s for me) - thanks to 'include-what-you-use' for some help - include Standard C header files before any other (coding style)
2013-08-04Improve test of mruby-numeric-ext GEMDaniel Bovensiepen
2013-07-23"spec.author" is better for single-author gems.Tomoyuki Sahara
"spec.author=" expects a String represents a single author. "spec.authors=" expects an Array which is a list of multiple authors. http://guides.rubygems.org/specification-reference/
2013-04-25rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206Yukihiro "Matz" Matsumoto
2013-04-01Fix to fit new raisef format.Masaki Muranaka
2013-03-29Remove limits.h from numeric.h. Add limits.h to some C files.Masaki Muranaka
2013-03-08define and use print format macros for mrb_intCremno
For portability: %ld can't be used to print a 64-bit mrb_int on WIN(32|64) because long is 32-bit wide.
2013-03-08fix commentKouki Ooyatsu
2013-03-08add Integer#chr test case: multibyte (raise RangeError)Kouki Ooyatsu
2013-03-08add mrbgems/ext/mruby-numeric, and method: Integer#chrKouki Ooyatsu