summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-04-01Update README.mdAkira Yumiyama
2013-04-01Add fib39.rb to benchmark/Masaki Muranaka
2013-04-01update README.mdAkira Yumiyama
2013-04-01initial commitAkira Yumiyama
2013-04-01Use mrb_raise() as possible instead of mrb_raisef().Masaki Muranaka
2013-04-01Fix typos.Masaki Muranaka
2013-04-01Fix to fit new raisef format.Masaki Muranaka
2013-04-01Add the care for malloc failed.Masaki Muranaka
At the first time, mrb_realloc raise RuntimeError. At the time fails twice in a row, it causes panic.
2013-04-01Add out_of_memory field to mrb_state.Masaki Muranaka
2013-03-31Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-03-31Integer.round have no arg.Masaki Muranaka
2013-03-31Remove unused functions.Masaki Muranaka
2013-03-31Move Integer.{floor,ceil,round,truncate} to mrblib/. For maintainability.Masaki Muranaka
2013-03-30Merge pull request #1118 from nemerle/fix_crc_signatureYukihiro "Matz" Matsumoto
Fix the calc_crc_16_ccitt signature to match the source file
2013-03-30Fix the calc_crc_16_ccitt signature to match the source fileArtur K
2013-03-31should have rewinded stack on exceptions; close #1113Yukihiro "Matz" Matsumoto
2013-03-31revive #to_intYukihiro "Matz" Matsumoto
2013-03-30Merge pull request #871 from monaka/pr-remove-bit-field-in-mrb_valueYukihiro "Matz" Matsumoto
Remove the bit-field by mrb_value.tt
2013-03-30move to_i from fixnum to integer; remove reference of to_int which is not in ISOYukihiro "Matz" Matsumoto
2013-03-30undef Integer#new; ref #1111Yukihiro "Matz" Matsumoto
2013-03-30cancel f4c27c6 since mruby.h is required for mrb_value etc. anywayYukihiro "Matz" Matsumoto
2013-03-30Merge pull request #1108 from monaka/pr-cleanup-numeric.c-20130329Yukihiro "Matz" Matsumoto
Cleanup numeric.c
2013-03-30Modified build dependency to exclude 'LEGAL' from libmruby archive.kurodash
2013-03-29Merge pull request #1115 from monaka/pr-add-null-char-to-each-symbol-nameYukihiro "Matz" Matsumoto
Add null char terminate to each symbol name.
2013-03-30Add null char terminate to each symbol name.Masaki Muranaka
2013-03-30Change to return the exception object when an exception occurred in mrb_funcalltakkaw
2013-03-29Rename mrb_fix2str() to mrb_fixnum_to_str(). This is for naming consistency.Masaki Muranaka
2013-03-29Include mrbconf.h as MRB_INT_MAX used here.Masaki Muranaka
2013-03-29Change the second argument of mrb_flo_to_str().Masaki Muranaka
Export mrb_flo_to_str() as API.
2013-03-29Remove mrb_flt2big() as there is no bignum in the core.Masaki Muranaka
Add new API mrb_flo_to_fixnum(). You can replace mrb_flt2big() to mrb_flo_to_fixnum() with few modifications.
2013-03-29Merge pull request #1107 from masuidrive/fixed_testrb_pathYukihiro "Matz" Matsumoto
Fixed testrb load path
2013-03-29Fixed testrb load pathYuichiro MASUI
2013-03-29Merge pull request #1106 from monaka/pr-remove-mrb_string_valueYukihiro "Matz" Matsumoto
Remove API mrb_string_value().
2013-03-29Remove API mrb_string_value(). There have mrb_str_to_str() in the core. And ↵Masaki Muranaka
mrb_string_value() is no merit to keep using.
2013-03-29Merge pull request #1105 from monaka/pr-display-more-information-in-verbose-modeYukihiro "Matz" Matsumoto
Display the command line when mrbc is kicked in the verbose mode.
2013-03-29Merge pull request #1104 from monaka/pr-simplify-dump-loadYukihiro "Matz" Matsumoto
Simplify dump/load
2013-03-29Display the command line when mrbc is kicked in the verbose mode.Masaki Muranaka
2013-03-29Add CHAR_BIT check. There are uint8_t to char conversions.Masaki Muranaka
2013-03-29Remove str_to_mrb_int(). There is some reasons.Masaki Muranaka
It is not used in the core. It does not have mrb_ prefix. strtol() is slightly heavy and we have similar API.
2013-03-29Reduce temporary memory allocations. They are redundant.Masaki Muranaka
2013-03-29Modify the type of line-number to uint16_t. Type short is not portable. And ↵Masaki Muranaka
it cannot be more than UINT16_MAX because of the mrbc binary format.
2013-03-29Reduce temporary memory allocations. They are redundant.Masaki Muranaka
2013-03-29Remove RiteFile as no used.Masaki Muranaka
2013-03-28Merge pull request #1102 from carsonmcdonald/gvarunderscorefixYukihiro "Matz" Matsumoto
Allow globals that start with $_
2013-03-28Merge pull request #1101 from monaka/pr-cleanup-includesYukihiro "Matz" Matsumoto
Cleanup includes
2013-03-28Allow globals that start with $_Carson McDonald
2013-03-29Rearrange SIZE_MAX. It is supported also VC++ since its version10. And there ↵Masaki Muranaka
seems SIZE_MAX is defined in stdint.h. And it possibly (depends on the version of VC++) conflicts with SIZE_MAX in limits.h. This patch is no need if I did not support VC++.
2013-03-29Move TRUE/FALSE existence checks.Masaki Muranaka
2013-03-29Sort include files. Some redundant includes are removed.Masaki Muranaka
2013-03-29Remove limits.h from numeric.h. Add limits.h to some C files.Masaki Muranaka