summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2012-06-12Merge pull request #263 from monaka/pr-make-sprintf-optionalYukihiro "Matz" Matsumoto
Make sprintf/format optional.
2012-06-12block_given? should work; close #262Yukihiro Matsumoto
2012-06-12raise error if string arg is given to Kernel#instance_evalYukihiro Matsumoto
2012-06-12remove Ruby version of Kernel#instance_evalYukihiro Matsumoto
2012-06-12mrb_get_args should honor optinal argumentsYukihiro Matsumoto
2012-06-12remove Kernel#eval from the core; close #261Yukihiro Matsumoto
2012-06-12Make sprintf/format optional.Masaki Muranaka
2012-06-12String#split("") should split per character (byte for now)Yukihiro Matsumoto
2012-06-12corrupted String#inspect on backslash escapesYukihiro Matsumoto
2012-06-12s.split(nil) should work like s.split()Yukihiro Matsumoto
2012-06-12should enhance test for Array#sliceYukihiro Matsumoto
2012-06-12minor correction in test/t/syntax.rbYukihiro Matsumoto
2012-06-12should handle splat in super argumentsYukihiro Matsumoto
2012-06-12remove obsolete commentYukihiro Matsumoto
2012-06-12String#split now understands string sepYukihiro Matsumoto
2012-06-12GETARG_x should return int, not int32_tYukihiro Matsumoto
2012-06-12remove khash#kh_debugYukihiro Matsumoto
2012-06-12should raise error on top-level super/yieldYukihiro Matsumoto
2012-06-11zsuper should respect block given; close #185Yukihiro Matsumoto
2012-06-11parser_dump: no print "local variables" if no local variablesYukihiro Matsumoto
2012-06-11should increment p on every iteration; close #254Yukihiro Matsumoto
2012-06-11should not quote || and && operators; close #253Yukihiro Matsumoto
2012-06-10Merge pull request #256 from masamitsu-murase/modify_string_sliceYukihiro "Matz" Matsumoto
"slice" of shared string returns invalid result
2012-06-10Merge pull request #255 from bovi/cmake-openwrt-anyYukihiro "Matz" Matsumoto
cmake Toolchain improvement (Target x86, mips, AVR32, ARM, etc.)
2012-06-11string.subseq should create new string based on 'ptr' not on 'aux.shared'.Masamitsu MURASE
2012-06-11Add test for slice of shared string.Masamitsu MURASE
2012-06-11cmake Toolchain file for any OpenWRT Target (x86, mips, AVR32, ARM, etc.)Daniel Bovensiepen
2012-06-10fixed typo DISPACTH to DISPATCHYukihiro Matsumoto
2012-06-08Merge pull request #251 from bovi/add-mips-cmakeYukihiro "Matz" Matsumoto
Add first sample for MIPS cross compile
2012-06-08Add first sample for MIPS cross compileDaniel Bovensiepen
2012-06-07Merge pull request #250 from MobiRuby/add_ud_to_mrb_stateYukihiro "Matz" Matsumoto
add auxiliary data pointer to mrb_state
2012-06-08add auxiliary data pointer to mrb_stateYuichiro MASUI
2012-06-07Merge pull request #249 from SatoshiOdawara/memory-leak-ritehashYukihiro "Matz" Matsumoto
memory leak in kh_resize_##name()
2012-06-07memory leak in kh_resize_##name()SatoshiOdawara
2012-06-06Merge pull request #248 from monaka/pr-use-value-i-for-nil-false-checkYukihiro "Matz" Matsumoto
Use value.i for nil/false check.
2012-06-07Use value.i for nil/false check.Masaki Muranaka
2012-06-07remove src/gc.hYukihiro Matsumoto
2012-06-05mruby/array.h: rename buf to ptrYukihiro Matsumoto
2012-06-05mruby/string.h: rename buf to ptrYukihiro Matsumoto
2012-06-05Merge pull request #246 from thecodeshop/jf/gnueabihfYukihiro "Matz" Matsumoto
Add Ubuntu -> Linux-on-ARM sample CMake toolchain files
2012-06-04Add Ubuntu -> Linux-on-ARM CMake toolchain filesJon
Add separate sample CMake toolchain files targeting Linux running on ARM, with and without hardware floating point support. Samples use the `gcc-arm-linux-gnueabihf` and `gcc-arm-linux-gnueabi` cross toolchains from the standard Ubuntu package repositories.
2012-06-05stop introducing Math::TORELANCEYukihiro Matsumoto
2012-06-04Merge pull request #245 from pbosetti/testsYukihiro "Matz" Matsumoto
Added Math.sqrt() that was missing in math.c, and added relevant test case
2012-06-05Merge branch 'jf/parser-dump' of https://github.com/thecodeshop/mruby into ↵Yukihiro Matsumoto
thecodeshop-jf/parser-dump
2012-06-05Time#- should return time if operand is a numberYukihiro Matsumoto
2012-06-04Merge pull request #243 from bovi/improve-time-and-testYukihiro "Matz" Matsumoto
Improve Time
2012-06-05merge conflict resolutionYukihiro Matsumoto
2012-06-05since 1.9 "!=" op is a method callYukihiro Matsumoto
2012-06-05symbol can contain non printable charactersYukihiro Matsumoto
2012-06-04Added Math.sqrt() that was missing in math.c, and added relevant test casePaolo Bosetti