| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-03-06 | Suppress a warning | Kouhei Sutou | |
| mrbgems/mruby-eval/src/eval.c: In function ‘create_proc_from_string’: mrbgems/mruby-eval/src/eval.c:152:10: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers] file = "(eval)"; ^ | |||
| 2016-03-06 | Merge pull request #3126 from jbreeden/backtrace_irep_null_check | Yukihiro "Matz" Matsumoto | |
| Null check for irep & initialize loc.lineno | |||
| 2016-03-05 | Fix Travis CI | jbreeden | |
| 2016-03-05 | Null check for irep & initialize loc.lineno | jbreeden | |
| 2016-03-04 | Add default benchmark build config | Zachary Scott | |
| 2016-02-29 | Merge pull request #3121 from asfluido/master | Yukihiro "Matz" Matsumoto | |
| The original code crashed when mrb->backtrace.n grew to 16. | |||
| 2016-02-26 | The original code crashed when mrb->backtrace.n grew to 16. | Carlo Prelz | |
| It looks like the logic to reallocate the backtrace was flawed, based on the wrong variable (loc_raw->i, which, as I have verified, decreases from 16 to 0 instead of increasing) I am not sure if this is the correct fix | |||
| 2016-02-25 | Merge pull request #3120 from rmalizia44/patch-1 | Yukihiro "Matz" Matsumoto | |
| Avoid Error when Compiling with -std=c99 flag | |||
| 2016-02-24 | Avoid Error when Compiling with -std=c99 flag | Malizia R | |
| 2016-02-22 | too many register push for else-less condtions; fix #3117 | Yukihiro "Matz" Matsumoto | |
| 2016-02-22 | cosmetic change for OP_EQ | Yukihiro "Matz" Matsumoto | |
| 2016-02-19 | mruby-struct: copied Struct length is not initialized; fix #3114 | Yukihiro "Matz" Matsumoto | |
| 2016-02-17 | peephole optimization for LOADNIL before STRCAT; ref #3110 | Yukihiro "Matz" Matsumoto | |
| 2016-02-17 | push value for NULL AST when value is required; fix #3110 | Yukihiro "Matz" Matsumoto | |
| 2016-02-17 | need to free context when reclaiming fiber object in GC; fix #3109 | Yukihiro "Matz" Matsumoto | |
| 2016-02-16 | syntax error in interpolated symbol; fixed #3108 | Yukihiro "Matz" Matsumoto | |
| 2016-02-16 | Merge pull request #3107 from mame/fix-enum-hash | Yukihiro "Matz" Matsumoto | |
| [255, 255, 255, 255, 255].hash raises "can't convert Float into Integer" | |||
| 2016-02-16 | Merge pull request #3106 from mame/fix-eval-no-filename | Yukihiro "Matz" Matsumoto | |
| Fix segfault when `eval("__FILE__")` is executed | |||
| 2016-02-16 | suppress "can't convert Float into Integer" in Enumerable#hash | Yusuke Endoh | |
| 2016-02-15 | Fix segfault when `eval("__FILE__")` is executed | Yusuke Endoh | |
| 2016-02-12 | Merge pull request #3101 from deuwert/fix-test-build | Yukihiro "Matz" Matsumoto | |
| Fix bug in mruby-test gem (fix #3094) | |||
| 2016-02-12 | Merge pull request #3102 from deuwert/add-limits | Yukihiro "Matz" Matsumoto | |
| Add more limitations | |||
| 2016-02-12 | Fix formatting again... | Daniel Bovensiepen | |
| 2016-02-12 | Add more limitations: | Daniel Bovensiepen | |
| - defined? - alias on global variables - Operator modification - Kernel.binding missing | |||
| 2016-02-12 | Fix bug in mruby-test gem. | Daniel Bovensiepen | |
| In an used build path mruby-test wasn't updating mrbtest.c in the case that the mgem selection was changed. This lead to: - a missing reference in case a GEM was removed - ignoring all new GEMs added to the build configuration This fix keeps track of the active gems and demands a rebuild of mrbtest.c in case that the gem selection changed. | |||
| 2016-02-12 | fixed typos in limitations.md | Yukihiro "Matz" Matsumoto | |
| 2016-02-12 | Merge pull request #3100 from deuwert/toolchain-openwrt | Yukihiro "Matz" Matsumoto | |
| Add toolchain support for OpenWRT | |||
| 2016-02-12 | Merge pull request #3099 from deuwert/more-limits | Yukihiro "Matz" Matsumoto | |
| Addition to mruby limitation documentation | |||
| 2016-02-11 | Add toolchain support for OpenWRT | Daniel Bovensiepen | |
| 2016-02-11 | Fix formatting | Daniel Bovensiepen | |
| 2016-02-11 | Add more limitations | Daniel Bovensiepen | |
| 2016-02-11 | add 1/2 description to limitations.md file | Yukihiro "Matz" Matsumoto | |
| 2016-02-11 | Merge pull request #3098 from deuwert/limitations | Yukihiro "Matz" Matsumoto | |
| Limitations | |||
| 2016-02-11 | Small format fix | Daniel Bovensiepen | |
| 2016-02-11 | Add limitation file | Daniel Bovensiepen | |
| 2016-02-05 | [cppcheck] mrb_str_rindex() remove unnecessary len update by chars2bytes() | Yukihiro "Matz" Matsumoto | |
| 2016-02-05 | [cppcheck] remove duplicated break | Yukihiro "Matz" Matsumoto | |
| 2016-02-05 | Hash: check flags before accessing ifnone; ref #980 | Yukihiro "Matz" Matsumoto | |
| 2016-02-04 | cache UTF8 status for utf8_strlen(); ref #980 | Yukihiro "Matz" Matsumoto | |
| 2016-02-04 | cache mrb_regexp_p(); ref #980 | Yukihiro "Matz" Matsumoto | |
| 2016-02-04 | Merge pull request #3096 from hlogmans/master | Yukihiro "Matz" Matsumoto | |
| Fix missing dependency on mruby-print to support 'puts' | |||
| 2016-02-03 | Fix missing dependency on mruby-print to support 'puts' | Hugo Logmans | |
| 2016-01-31 | Merge pull request #3093 from retrage/retrage/dev | Yukihiro "Matz" Matsumoto | |
| Add String#rjust to mruby-string-ext | |||
| 2016-01-31 | Merge pull request #3092 from kenhys/fix-suported | Yukihiro "Matz" Matsumoto | |
| Fix a typo | |||
| 2016-01-31 | Fix a typo | HAYASHI Kentaro | |
| su ported -> supported ^ | |||
| 2016-01-30 | Merge pull request #29 from rmalizia44/patch-1 | Tomoyuki Sahara | |
| Add _WIN32_WINNT definition to Avoid Windows Compilation Errors | |||
| 2016-01-30 | Add String#rjust test to mruby-string-ext | Akira Moroo | |
| 2016-01-30 | Add String#rjust to mruby-string-ext | Akira Moroo | |
| 2016-01-28 | Add _WIN32_WINNT definition to Avoid Windows Compilation Errors | rmalizia44 | |
| the line #define _WIN32_WINNT 0x0501 will cause ws2tcpip.h to implement the missing functions freeaddrinfo, getaddrinfo and getnameinfo on windows | |||
| 2016-01-28 | Merge pull request #3091 from visualsayed/fix_hash_replace_method | Yukihiro "Matz" Matsumoto | |
| protect NoMethodError from calling to_hash in replace | |||
