summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-04-09target_class should not be TT_ICLASS; close #1152Yukihiro "Matz" Matsumoto
2013-04-09nregs size was too big (off by one); close #1137Yukihiro "Matz" Matsumoto
2013-04-08Merge pull request #1150 from monaka/pr-add-test-runner-supportYukihiro "Matz" Matsumoto
Add "test runner" support for cross builds.
2013-04-08Merge pull request #1160 from matsumoto-r/change_mruby_random_licenseYukihiro "Matz" Matsumoto
Change mruby-random License to MIT
2013-04-08Change mruby-random License to MITMATSUMOTO Ryosuke
refs: http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/license.html
2013-04-07Merge pull request #1159 from h2so5/fix-mirb-heredocYukihiro "Matz" Matsumoto
Fix checking for heredoc in mirb
2013-04-07Fix checking for heredoc in mirbh2so5
2013-04-06Merge pull request #1155 from monaka/pr-support-global-zero-variableYukihiro "Matz" Matsumoto
Support $0 variable.
2013-04-07Support $0 variable.Masaki Muranaka
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-06Merge pull request #1147 from schmurfy/dump_osxYukihiro "Matz" Matsumoto
stdint header seems required on osx for uint8_t
2013-04-06Merge pull request #1146 from kano4/pr-define-isascii-for-c99Yukihiro "Matz" Matsumoto
Define isascii for C99
2013-04-06Merge pull request #1145 from h2so5/fix-mirbYukihiro "Matz" Matsumoto
Improve checking for unterminated string in mirb
2013-04-06Merge pull request #1116 from kurodash/pr-exclude-legal-from-archiveYukihiro "Matz" Matsumoto
Modified build dependency to exclude 'LEGAL' from libmruby archive.
2013-04-06stdint header seems required on osx for uint8_tJulien Ammous
2013-04-06Define isascii for C99kano4
2013-04-06Improve checking for unterminated string in mirbh2so5
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