summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-04-07Add "test runner" support for cross builds.Masaki Muranaka
"test runner" means target simulator like QEmu, GDB sim, and so on. Also "test runner" might be debug agents for real targets. If you do not setup test_runner, Rake will work same as before.
2013-04-06comment E_* macros to address concerns in #1143Yukihiro "Matz" Matsumoto
2013-04-06parse_args should return either EXIT_SUCCESS or EXIT_FAILUREYukihiro "Matz" Matsumoto
2013-04-06use EXIT_SUCCESS and EXIT_FAILURE for exit status; close #1142Yukihiro "Matz" Matsumoto
2013-04-05Merge pull request #1141 from mattn/fix_exitYukihiro "Matz" Matsumoto
Fix exit
2013-04-05Merge pull request #1139 from masuidrive/buildYukihiro "Matz" Matsumoto
Improve recent CRuby rake compatibility
2013-04-05Merge pull request #1138 from h2so5/syntax-error-for-incomplete-global-variableYukihiro "Matz" Matsumoto
Add syntax error for incomplete global variables
2013-04-05Fix exitmattn
2013-04-05Improve CRuby rake compatibleYuichiro MASUI
2013-04-05Add syntax error for incomplete global variablesh2so5
2013-04-04Merge pull request #1136 from h2so5/syntax-error-for-incomplete-variableYukihiro "Matz" Matsumoto
Add syntax error for incomplete instance/class variables
2013-04-05sort mrblib/*.rb files to compile (class.rb comes before error.rb); close ↵Yukihiro "Matz" Matsumoto
#1132; close #1134
2013-04-05Add syntax error for incomplete instance/class variablesh2so5
2013-04-05factor out redundant Regexp check into functionsYukihiro "Matz" Matsumoto
2013-04-05method function should return mrb_valueYukihiro "Matz" Matsumoto
2013-04-05raise NotImplementedError from Module.constants (15.2.2.3.1); close #1125Yukihiro "Matz" Matsumoto
2013-04-04Merge pull request #1132 from monaka/pr-support-NameError.nameYukihiro "Matz" Matsumoto
Support NameError#name
2013-04-04Add one more test for NameError#initialize. As we support NameError#name.Masaki Muranaka
2013-04-04Add test for NameError#nameMasaki Muranaka
2013-04-04Add `NameError#name`. Fix `NameError.new` and `NameError.initialize`. Enable ↵Masaki Muranaka
2nd argument for `NameError.new` in C API.
2013-04-04Use mrb_name_error() as possible.Masaki Muranaka
2013-04-04Move mrb_name_error() declaration to mruby.h As it is requred by struct mrbgem.Masaki Muranaka
2013-04-04make Data_Make_Struct a statement to make it C99 compatibleYukihiro "Matz" Matsumoto
2013-04-04rename DATA API: mrb_get_datatype -> mrb_data_get_ptr; mrb_check_datatype -> ↵Yukihiro "Matz" Matsumoto
mrb_data_check_and_get
2013-04-03Merge pull request #1131 from takkaw/mrb_funcall_return_excYukihiro "Matz" Matsumoto
Change to return the exception object when an exception occurred in mrb_funcall
2013-04-03Merge pull request #1130 from gzohari/adjust_ci_nregsYukihiro "Matz" Matsumoto
Adjust ci->nregs to prevent heap corruption
2013-04-03Merge pull request #1128 from monaka/pr-add-iso-confomance-tests-20130402Yukihiro "Matz" Matsumoto
Add ISO confomance tests
2013-04-02Adjust ci->nregs to prevent heap corruptionGilad Zohari
2013-04-02Add comments: some methods is defined in mrbgems.Masaki Muranaka
2013-04-02Add comments: eval method is defined in mrbgems.Masaki Muranaka
2013-04-02Add "Comparable" to labels.Masaki Muranaka
2013-04-02Add test cases.Masaki Muranaka
2013-04-02Module#constants should include constants defined in superclass; close #1126Yukihiro "Matz" Matsumoto
2013-04-02add Module#constants (15.2.2.4.24)Yukihiro "Matz" Matsumoto
2013-04-01Merge pull request #1121 from monaka/pr-check-malloc-failed2Yukihiro "Matz" Matsumoto
Check malloc failed
2013-03-31Merge pull request #1124 from kouki-o-iij/pr-kernel-notequalYukihiro "Matz" Matsumoto
bugfix: Kernel#!=, and add #!= testcase.
2013-04-01bugfix: Kernel#!=, and add #!= testcase.Kouki Ooyatsu
2013-03-31Merge pull request #1122 from monaka/pr-cleanup-raiseYukihiro "Matz" Matsumoto
Cleanup around mrb_raise calls
2013-03-31Merge pull request #1123 from monaka/pr-add-fib39-to-benchmarkYukihiro "Matz" Matsumoto
Add fib39.rb to benchmark/
2013-04-01revert 79ebdb5 for the time being #1110Yukihiro "Matz" Matsumoto
2013-04-01mrb_any_to_s: add separatorYukihiro "Matz" Matsumoto
2013-04-01Add fib39.rb to benchmark/Masaki Muranaka
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