summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-string-ext
AgeCommit message (Collapse)Author
2014-03-31More tests for String#hex, String#oct as against ↵mattn
9434506035c3fc01de55ac0bc8b75497f8b5df5f
2014-03-27add String#octcubicdaiya
2014-03-27Implement String#hexmattn
2014-03-17move summary of mrbgems in default gembox to its spectake_cheeze
2014-03-06make embed string when create literalsksss
2014-03-06embed small stringksss
use flags 4 for *this object is embed* use flags 8~64 for *embed string length*
2014-01-07remove superfluous includescremno
- 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)
2014-01-07mruby-string-utf8: UTF-8 string may contail NUL; #1646Yukihiro "Matz" Matsumoto
2013-12-27add String#partition and String#rpartition.Tomoyuki Sahara
2013-08-26Merge branch 'mruby' into pr-typeerror-string-start-end-withTomoyuki Sahara
Conflicts: mrbgems/mruby-string-ext/src/string.c mrbgems/mruby-string-ext/test/string.rb
2013-08-26Merge pull request #1485 from fjmilens3/string_end_withYukihiro "Matz" Matsumoto
Bug in String#end_with? resulting from incorrect length determination
2013-08-23Check type of arguments for #start_with and #end_with.Tomoyuki Sahara
2013-08-22Refactor of String#start_with? comparison logic.Frederick John Milens III
2013-08-22Refactor of String#end_with? comparison logic.Frederick John Milens III
2013-08-22Fix for string-length-related issue in String#end_with? logic.Frederick John Milens III
2013-08-22Added test case for String#end_with? with string of length 2.Frederick John Milens III
2013-08-22Fix for string-length-related issue in String#start_with? logic.Frederick John Milens III
2013-08-22Added test case for String#start_with? with string of length 1.Frederick John Milens III
2013-08-04Improve test of mruby-string-ext GEMDaniel Bovensiepen
2013-07-23"spec.author" is better for single-author gems.Tomoyuki Sahara
"spec.author=" expects a String represents a single author. "spec.authors=" expects an Array which is a list of multiple authors. http://guides.rubygems.org/specification-reference/
2013-04-25Add tests to make sure. As we do not use standard library for formatting.Masaki Muranaka
2013-04-25Move regression test as String#dump is not in ther core but the mrbgems.Masaki Muranaka
2013-04-25rename every ARGS_XXX to MRB_ARGS_XXX; ref #1206Yukihiro "Matz" Matsumoto
2013-04-19Add String#swapcase,swapcase!,concat,casecmp,start_with,end_withh2so5
2013-03-08add "strip" family to String.Tomoyuki Sahara
2013-03-08Add String#dump method.Masaki Muranaka
2013-03-07add mrbgems/mruby-string-ext, and method: String#getbyteskandhas