summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2012-06-02fixed prototype: g++ will complain about definition not being a prototype, ↵Frank Celler
should work with GCC and VC as well
2012-06-02fixed prototype: g++ will complain about definition not being a prototype, ↵Frank Celler
should work with GCC and VC as well
2012-06-02Merge pull request #225 from MobiRuby/fixed_const_missingYukihiro "Matz" Matsumoto
fixed const_get && const_missing issue
2012-06-02Merge pull request #226 from MobiRuby/authorYukihiro "Matz" Matsumoto
Could you add me to AUTHORS?
2012-06-02Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-02'mrb_sym' used as 'uint32_t'. it's broken portability; based on the work ↵Yukihiro Matsumoto
from @crimsonwoods; close #216
2012-06-02Could you add me to AUTHORS?Yuichiro MASUI
2012-06-02fixed const_get && const_missing issueYuichiro MASUI
2012-06-02Merge pull request #221 from bovi/test-for-issue211Yukihiro "Matz" Matsumoto
Add Test Case for issue #211
2012-06-02Merge pull request #220 from bovi/test-for-issue210Yukihiro "Matz" Matsumoto
Add Test Case for issue #210
2012-06-02Merge pull request #218 from thecodeshop/cmake-xcodeYukihiro "Matz" Matsumoto
enhance CMake support for Xcode native builds
2012-06-02Merge pull request #217 from takahashim/fix-use-mrb_mallocYukihiro "Matz" Matsumoto
use mrb_malloc instead of malloc
2012-06-02Merge pull request #224 from monaka/pr-use-if-instead-of-switchYukihiro "Matz" Matsumoto
Use "if" instead "switch".
2012-06-02Use "if" instead "switch".Masaki Muranaka
2012-06-02ensure str_modify is called at the beginning of modifying methodsYukihiro Matsumoto
2012-06-02Add Test Case for issue #211Daniel Bovensiepen
2012-06-02Add Test Case for issue #210Daniel Bovensiepen
2012-06-02use mrb_malloc instead of malloctakahashim
2012-06-01Update in-source build error messageJon
2012-06-01Update CMake to enable normal Xcode workflowsJon
Similar to the existing CMake Visual Studio IDE support, allow CMake to generate Xcode project files in mruby's root directory. This enables workflows normally expected by Xcode IDE users.
2012-06-02mrb_str_concat was broken for shared strings; close #214Yukihiro Matsumoto
2012-06-02remove print and puts from kernel.rbYukihiro Matsumoto
2012-06-01remove Ruby define send from kernel.rbYukihiro Matsumoto
2012-06-01OP_RETURN operand should be stack position of the new scope, not the current ↵Yukihiro Matsumoto
scope
2012-06-01rest argument offset might be -1 that means emptyYukihiro Matsumoto
2012-06-01remove unused mrb_f_send; and rename mrb_f_send_m to mrb_f_sendYukihiro Matsumoto
2012-06-01remove spawn (and backtick) method that cannot be implemented without ↵Yukihiro Matsumoto
platform support
2012-06-01reorder arguments to mrb_get_args in mrb_f_send_mYukihiro Matsumoto
2012-06-01symbol table key should be mrb_sym, not int32_tYukihiro Matsumoto
2012-06-01Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-05-31Merge pull request #211 from MobiRuby/add_kernel_sendYukihiro "Matz" Matsumoto
add Kernel#send
2012-06-01Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-05-31Merge pull request #210 from MobiRuby/module_constYukihiro "Matz" Matsumoto
Add Module.const_defined? && _get && _set methods
2012-06-01remove unused prototypes from mruby.hYukihiro Matsumoto
2012-06-01add Kernel#sendYuichiro MASUI
2012-06-01remove mrb_rs from mruby.hYukihiro Matsumoto
2012-06-01remove CONST_ID from mruby.hYukihiro Matsumoto
2012-06-01remove IO related prototypes from mruby.hYukihiro Matsumoto
2012-06-01remove ruby_setjmp from mruby.hYukihiro Matsumoto
2012-06-01remove KASH from mruby.hYukihiro Matsumoto
2012-06-01remove REALLOC_NYukihiro Matsumoto
2012-06-01move respond_to and instance_of prototypes to mruby.hYukihiro Matsumoto
2012-06-01remove unnecessary header inclusion from hash.cYukihiro Matsumoto
2012-06-01add prototype for mrb_garbage_collect()Yukihiro Matsumoto
2012-06-01add prototype for mrb_garbage_collect()Yukihiro Matsumoto
2012-06-01remove unused event related declarationsYukihiro Matsumoto
2012-06-01new API mrb_gc_protect() to add object to arenaYukihiro Matsumoto
2012-06-01small refactoring; hash->ht should not be NULLYukihiro Matsumoto
2012-06-01values need not to dup unlike keysYukihiro Matsumoto
2012-06-01reorder mrb_ary_new_from_values() args to (argc, argv)Yukihiro Matsumoto