summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
AgeCommit message (Collapse)Author
2014-04-21Also set $0 for binary filesiTitou
2014-04-21Merge pull request #2101 from take-cheeze/struct_testYukihiro "Matz" Matsumoto
Remove `Struct` defined check in test.
2014-04-21Remove unnecessary `require 'fiber'` note in Fiber.current document.take_cheeze
2014-04-21Add document to Fiber#transfer .take_cheeze
2014-04-21Remove `Struct` defined check in test.take_cheeze
2014-04-21 Add Array#reject_bangJun Hiroe
2014-04-21Add Array#delete_ifJun Hiroe
2014-04-21Merge pull request #2092 from take-cheeze/test_syntaxYukihiro "Matz" Matsumoto
Suppress test script syntax warning.
2014-04-20Suppress test script syntax warning.take_cheeze
2014-04-20Implement Struct#size and Struct#length .take_cheeze
2014-04-20Merge pull request #2089 from ksss/sym-casecmpYukihiro "Matz" Matsumoto
Implement Symbol#casecmp
2014-04-20Merge pull request #2088 from ksss/string-casecmpYukihiro "Matz" Matsumoto
String#casecmp should be call `to_str`
2014-04-20Merge pull request #2087 from ksss/sym-comparableYukihiro "Matz" Matsumoto
Symbol class include Comparable module.
2014-04-20Implement Symbol#casecmpksss
2014-04-20String#casecmp should be call `to_str`ksss
when non String object sent And should be raise TypeError when can not responsed to `to_str`
2014-04-20Symbol class include Comparable module.ksss
2014-04-20Fix typos in tests for mruby-string-utf8Jun Hiroe
2014-04-19Merge pull request #2079 from suzukaze/add-test-of-utf8-string.rindexYukihiro "Matz" Matsumoto
Add tests for String#rindex of mruby-string-utf8.
2014-04-19Merge pull request #2077 from take-cheeze/rstruct_macroYukihiro "Matz" Matsumoto
Use RARRAY_* macro instead of accessing RArray field.
2014-04-19Add tests for utf8-string#rindexJun Hiroe
2014-04-19Merge pull request #2078 from suzukaze/add-block-with-array.uniq_bangYukihiro "Matz" Matsumoto
Add block argument with Array#uniq! and Array#uniq
2014-04-18mruby-string-utf8: update UTF-8 tests; ref #2076Yukihiro "Matz" Matsumoto
2014-04-18mruby-string-utf8: str_subseq takes UTF-8 index, not byte index; ref #2076Yukihiro "Matz" Matsumoto
2014-04-18Use RARRAY_* macro instead of accessing RArray field.take_cheeze
2014-04-18Add a block argument with Array#uniqJun Hiroe
2014-04-18Add a block argument with Array#uniq_bangJun Hiroe
2014-04-18Add one more testmattn
2014-04-18Add test for String#ord, String#split for mruby-string-utf8mattn
2014-04-18Implement String#ord, String#split for mruby-string-utf8mattn
2014-04-18mruby-string-utf8: String#reverse! may leak memory when mrb_str_modify() ↵Yukihiro "Matz" Matsumoto
raises exception
2014-04-17Cosmetic changemattn
2014-04-17Handle utf-8 code in index/rindexmattn
2014-04-17Implement String#index, fixes #2073mattn
2014-04-17Use mrb_regexp_p to check regexp.take_cheeze
2014-04-17Symbol#to_proc to support block call.Yukihiro "Matz" Matsumoto
based on a patch from @ksss; close #2071
2014-04-17raises an ArgumentError when calling #callYukihiro "Matz" Matsumoto
based on a patch from @ksss; close #2070
2014-04-16Use mruby/re.h instead of duplicate definition.take_cheeze
2014-04-15Add test for UTF-8 string String#size .take_cheeze
2014-04-14Fix and add test to Proc#inspect .Takeshi Watanabe
2014-04-14reduce RSTRING_PTR usagecremno
2014-04-13mruby-time: fix check of `mktime`'s return valuecremno
>If the calendar time cannot be represented, the function returns the value (time_t)(-1). http://www.iso-9899.info/n1256.html#7.23.2.3p3
2014-04-13mruby-time: remove unnecessary `tzset` callcremno
The gem doesn't use the global variables and: >Local timezone information is used as though localtime() calls tzset(). http://pubs.opengroup.org/onlinepubs/9699919799/functions/localtime.html
2014-04-12remove mirb regression test that fails on travis-ci onlyYukihiro "Matz" Matsumoto
2014-04-12Restore arena index since large struct may create many Proc objects; a patch ↵Yukihiro "Matz" Matsumoto
from @take-cheeze; ref #2052
2014-04-12Add test cases to 'large struct' test; a patch from @take-cheeze; ref #2052Yukihiro "Matz" Matsumoto
2014-04-12Add Array#uniq_bang testJun Hiroe
2014-04-12Refactor array test to use assert_xxx methodJun Hiroe
2014-04-12Add Array#rotate_bangJun Hiroe
2014-04-11Merge pull request #2045 from suzukaze/add-array.rotateYukihiro "Matz" Matsumoto
Array#rotate
2014-04-11Array#rotateJun Hiroe