summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2015-10-01Merge pull request #2961 from takahashim/regex_encYukihiro "Matz" Matsumoto
support Regexp literal option: //n and //u
2015-10-01Merge pull request #2973 from mattn/fix-windows-testsYukihiro "Matz" Matsumoto
fix tests on windows.
2015-09-30fix tests on windows.Yasuhiro Matsumoto
'bin/mruby' not work on windows. so correct command name and quoted arguments.
2015-09-30fix testsYasuhiro Matsumoto
2015-09-29Merge pull request #2966 from maclover7/patch-1Yukihiro "Matz" Matsumoto
Small Markdown updates to README.md
2015-09-29Get rid of weird whitespaceJon Moss
2015-09-29Retain #2595 markdown short linksJon Moss
2015-09-29chop with utf-8. fix #2967Yasuhiro Matsumoto
2015-09-27Small Markdown updates to README.mdJon Moss
Small copy and styling updates
2015-09-27Merge pull request #2965 from takahashim/fix-class-new-instanceYukihiro "Matz" Matsumoto
fix signature of mrb_class_new_instance()
2015-09-27Merge pull request #2964 from takahashim/fix-utf8-inspectYukihiro "Matz" Matsumoto
fix String#inspect with MRB_UTF8_STRING
2015-09-27fix signature of mrb_class_new_instance()takahashim
dd925578c604a608f83172f85d8e5bfc3bb99c6a changed the order of arguments, but it doesn't seem intentional.
2015-09-27fix String#inspect with MRB_UTF8_STRINGtakahashim
cf. #2963
2015-09-27Enumerable#each_{cons,slice} to return enumeratorsYukihiro "Matz" Matsumoto
2015-09-25LinkerConfig is a struct with five paramsTerence Lee
2015-09-26Refator Hash.fetch testJun Hiroe
2015-09-26support Regexp literal option: //n and //utakahashim
2015-09-25inspect prints valid UTF-8 character without escapingYukihiro "Matz" Matsumoto
2015-09-25add boundary check to utf8len() to avoid oob memory accessYukihiro "Matz" Matsumoto
2015-09-24UTF-8 string support in coreYukihiro "Matz" Matsumoto
define MRB_UTF8_STRING (in mrbconf.h) to enable UTF-8 support.
2015-09-23don't print anonymous struct class nameYukihiro "Matz" Matsumoto
2015-09-23mruby-struct gem refactoringYukihiro "Matz" Matsumoto
2015-09-23should initialize local variable prepended to falseYukihiro "Matz" Matsumoto
2015-09-23String#rindex should no longer take integer argumentYukihiro "Matz" Matsumoto
2015-09-23remove a comment that no longer be true; 2cb6c27Yukihiro "Matz" Matsumoto
2015-09-22String#index should no longer take integer argumentYukihiro "Matz" Matsumoto
2015-09-22Merge pull request #2959 from sagmor/api-documentationYukihiro "Matz" Matsumoto
C API documentation
2015-09-21Merge descriptions from doc/api/mruby/array.h.mdSeba Gamboa
2015-09-21document mrb_nil_valueSeba Gamboa
2015-09-21Document data headerSeba Gamboa
2015-09-22add new functions mrb_gc_register/unregister; close #1411Yukihiro "Matz" Matsumoto
some routines need to refer mruby objects (e.g. callbacks), in that case you have to protect your objects from garbage collection. the new functions mrb_gc_register() keeps those objects from GC. you have to remove your objects using mrb_gc_unregister() when your C routines use mruby objects any longer, otherwise objects will leak.
2015-09-21Sort compiler macros aroundSeba Gamboa
2015-09-21Sorting documentation groupingSeba Gamboa
2015-09-20Setting up doxygen groupsSeba Gamboa
2015-09-20Merging documentation from docsSeba Gamboa
2015-09-18Playing around with some documentations schemesSeba Gamboa
2015-09-19Merge pull request #2958 from suzukaze/fix-indentsYukihiro "Matz" Matsumoto
Fix indents
2015-09-19Fix indentsJun Hiroe
2015-09-18Merge pull request #2957 from suzukaze/replace-1-with-true-macroYukihiro "Matz" Matsumoto
Replace 1 with TURE macro
2015-09-18Merge pull request #2956 from Asmod4n/masterYukihiro "Matz" Matsumoto
Problem: Hash#fetch doesn't raise KeyError when a key cannot be found
2015-09-18Replace 1 with TURE macroJun Hiroe
2015-09-17Problem: Hash#fetch doesn't raise KeyError when a key cannot be foundAsmod4n
Solution: change the Exception class raised to KeyError when a key cannot be found.
2015-09-17Merge remote-tracking branch 'mruby/master'Asmod4n
2015-09-17Merge pull request #2953 from takahashim/string_asetYukihiro "Matz" Matsumoto
support String#[pos, len]= val
2015-09-16support String#[]= with 3 argstakahashim
2015-09-16Merge pull request #2952 from takahashim/hash-fetch-block-keyYukihiro "Matz" Matsumoto
fix block variable in Hash#fetch
2015-09-16fix block variable in Hash#fetchtakahashim
2015-09-15Merge pull request #2951 from tatsuhiro-t/mrb_close_with_nullptrYukihiro "Matz" Matsumoto
Don't crash if NULL is passed to mrb_close
2015-09-14instance_eval should set target_class; close #2936Yukihiro "Matz" Matsumoto
target_class should be singleton class of the receiver
2015-09-12Don't crash if NULL is passed to mrb_closeTatsuhiro Tsujikawa
Sometimes it is very useful just return from mrb_close if NULL is passed as mrb. This is the same spirit of free(3), which just does nothing if NULL is passed.