| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-09-24 | UTF-8 string support in core | Yukihiro "Matz" Matsumoto | |
| define MRB_UTF8_STRING (in mrbconf.h) to enable UTF-8 support. | |||
| 2015-08-05 | add String#setbyte and String#byteslice to mruby-string-ext | Yukihiro "Matz" Matsumoto | |
| 2015-05-28 | remove unnecessary including of <ctype.h> | cremno | |
| Not needed anymore since 85075bef7583edd0a48cfbdfaa632cbdacf78f2c | |||
| 2015-04-18 | Suppress warnings generated by -Wwrite-strings | Kouhei Sutou | |
| Here are suppressed warnings: src/fmt_fp.c: In function 'fmt_fp': src/fmt_fp.c:124:16: warning: initialization discards 'const' qualifier from pointer target type char *ss = (t&32)?"inf":"INF"; ^ src/fmt_fp.c:125:17: warning: assignment discards 'const' qualifier from pointer target type if (y!=y) ss=(t&32)?"nan":"NAN"; ^ mrbgems/mruby-string-ext/src/string.c: In function 'mrb_str_succ_bang': mrbgems/mruby-string-ext/src/string.c:302:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "1"; ^ mrbgems/mruby-string-ext/src/string.c:305:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "a"; ^ mrbgems/mruby-string-ext/src/string.c:308:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "A"; ^ mrbgems/mruby-bin-mruby/tools/mruby/mruby.c: In function 'main': mrbgems/mruby-bin-mruby/tools/mruby/mruby.c:213:13: warning: assignment discards 'const' qualifier from pointer target type cmdline = args.cmdline ? args.cmdline : "-"; ^ mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c: In function 'print_breakpoint': mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type char* enable_letter[] = {BREAK_INFO_MSG_DISABLE, BREAK_INFO_MSG_ENABLE}; ^ mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type | |||
| 2014-12-17 | mrb_str_new(mrb, "", len) creates an unmodifiable string object; ref #2674 | Yukihiro "Matz" Matsumoto | |
| 2014-12-17 | Add String#prepend | Jun Hiroe | |
| 2014-08-21 | use mrb_str_cat_lit() instead of mrb_str_cat_cstr(). | Tatsuhiko Kubo | |
| 2014-08-11 | "-a-a-".succ should be "-a-b-" | mattn | |
| 2014-08-11 | Fix String#succ. "-a-".succ should be "-b-" | mattn | |
| 2014-08-11 | Fix String#succ. "-".succ should be "." | mattn | |
| 2014-08-08 | Add String#succ, String#succ!, String#next, String#next! | mattn | |
| 2014-06-11 | String#clear: use String#replace to simple | ksss | |
| 2014-06-11 | Add NOFREE macros | Jun Hiroe | |
| 2014-06-07 | move String#clear to mruby-string-ext; ref #2370 | Yukihiro "Matz" Matsumoto | |
| 2014-06-04 | fix String#lines comment; ref mattn@2e1855a | Yukihiro "Matz" Matsumoto | |
| 2014-06-04 | Add String#lines | mattn | |
| 2014-06-03 | Implement String#chr | Jun Hiroe | |
| 2014-04-25 | Use mrb_int in mrbgem rest argument getting. | take_cheeze | |
| 2014-04-14 | reduce RSTRING_PTR usage | cremno | |
| 2014-03-27 | add String#oct | cubicdaiya | |
| 2014-03-27 | Implement String#hex | mattn | |
| 2014-03-06 | make embed string when create literals | ksss | |
| 2014-03-06 | embed small string | ksss | |
| use flags 4 for *this object is embed* use flags 8~64 for *embed string length* | |||
| 2014-01-07 | remove superfluous includes | cremno | |
| - reduce compile time by a little bit (full-core: ~0.7s for me) - thanks to 'include-what-you-use' for some help - include Standard C header files before any other (coding style) | |||
| 2013-08-26 | Merge branch 'mruby' into pr-typeerror-string-start-end-with | Tomoyuki Sahara | |
| Conflicts: mrbgems/mruby-string-ext/src/string.c mrbgems/mruby-string-ext/test/string.rb | |||
| 2013-08-26 | Merge pull request #1485 from fjmilens3/string_end_with | Yukihiro "Matz" Matsumoto | |
| Bug in String#end_with? resulting from incorrect length determination | |||
| 2013-08-23 | Check type of arguments for #start_with and #end_with. | Tomoyuki Sahara | |
| 2013-08-22 | Refactor of String#start_with? comparison logic. | Frederick John Milens III | |
| 2013-08-22 | Refactor of String#end_with? comparison logic. | Frederick John Milens III | |
| 2013-08-22 | Fix for string-length-related issue in String#end_with? logic. | Frederick John Milens III | |
| 2013-08-22 | Fix for string-length-related issue in String#start_with? logic. | Frederick John Milens III | |
| 2013-04-25 | rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206 | Yukihiro "Matz" Matsumoto | |
| 2013-04-19 | Add String#swapcase,swapcase!,concat,casecmp,start_with,end_with | h2so5 | |
| 2013-03-08 | Add String#dump method. | Masaki Muranaka | |
| 2013-03-07 | add mrbgems/mruby-string-ext, and method: String#getbyte | skandhas | |
