summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2014-04-15Update language documentation without line number to reduce update interval ↵Daniel Bovensiepen
in the future
2014-04-15Implement switch for line numbersDaniel Bovensiepen
2014-04-15Update Language DocumentationDaniel Bovensiepen
2014-04-15resolve conflictYukihiro "Matz" Matsumoto
2014-04-14Fix and add test to Proc#inspect .Takeshi Watanabe
2014-04-14should always initialize header flags for pooled stringsYukihiro "Matz" Matsumoto
2014-04-14fixed wrong use of pointer reference found by @tsahara; ref #2059Yukihiro "Matz" Matsumoto
2014-04-14Merge pull request #2060 from cremno/exc_inspect-dup-fileYukihiro "Matz" Matsumoto
exc_inspect: dup file and check mesg only once
2014-04-14Merge pull request #2059 from cremno/reduce-rstring_ptr-usageYukihiro "Matz" Matsumoto
reduce RSTRING_PTR usage
2014-04-14exc_inspect: dup file and check mesg only oncecremno
2014-04-14reduce RSTRING_PTR usagecremno
2014-04-14Merge pull request #2058 from cremno/mruby-time-more-portableYukihiro "Matz" Matsumoto
mruby-time: two small changes for portability
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-13disable fragile bintest on travis-ciYukihiro "Matz" Matsumoto
2014-04-13use quadratic probing in khash.hYukihiro "Matz" Matsumoto
2014-04-13use kh_put2 in mrb_hash_set for performance improvementYukihiro "Matz" Matsumoto
2014-04-13add kh_push2() to check if entry is addedYukihiro "Matz" Matsumoto
2014-04-13Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-04-13avoid function style parens after "return"; ref #2055Yukihiro "Matz" Matsumoto
2014-04-13Merge branch 'Refactor-numeric.c' of https://github.com/suzukaze/mruby into ↵Yukihiro "Matz" Matsumoto
suzukaze-Refactor-numeric.c
2014-04-13Merge pull request #2056 from suzukaze/fix-indentYukihiro "Matz" Matsumoto
Fix indent in bit_coerce
2014-04-13Fix indent in bit_coerceJun Hiroe
2014-04-13Refactor fix_rshiftJun Hiroe
2014-04-13Refactor fix_lshiftJun Hiroe
2014-04-13disable bintest for nowYukihiro "Matz" Matsumoto
2014-04-13khash.h: use first found k_delYukihiro "Matz" Matsumoto
2014-04-12Merge pull request #2053 from suzukaze/refactor-fix_revYukihiro "Matz" Matsumoto
Refactor fix_rev
2014-04-12Refactor fix_revJun Hiroe
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-12simplify Fixnum#==Yukihiro "Matz" Matsumoto
2014-04-12simplify Numeric#eql?Yukihiro "Matz" Matsumoto
2014-04-12remove num_equal() that potentially cause infinite loopYukihiro "Matz" Matsumoto
2014-04-12Merge pull request #2051 from suzukaze/add-array_bang_testYukihiro "Matz" Matsumoto
Add Array#uniq! test
2014-04-12Add Array#uniq_bang testJun Hiroe
2014-04-12Merge pull request #2050 from suzukaze/refactor-array-testYukihiro "Matz" Matsumoto
Refactor array test to use assert_xxx method
2014-04-12Refactor array test to use assert_xxx methodJun Hiroe
2014-04-12Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-04-12replace memcpy() with a magic number by two assignments as suggested by ↵Yukihiro "Matz" Matsumoto
@cremno; close #2048
2014-04-12Merge pull request #2049 from ksss/str-dupYukihiro "Matz" Matsumoto
mrb_str_dup return shared string instead of new string
2014-04-12mrb_str_dup use sheard string instead of new stringksss
2014-04-12Delegate irep string free to mrb_gc_free_strksss
2014-04-12retrieve values in Hash#each to handle modified keysYukihiro "Matz" Matsumoto
2014-04-12Merge pull request #2047 from suzukaze/add-array-rotate_bangYukihiro "Matz" Matsumoto
Add Array#rotate!
2014-04-12Add Array#rotate_bangJun Hiroe
2014-04-11Merge pull request #2045 from suzukaze/add-array.rotateYukihiro "Matz" Matsumoto
Array#rotate
2014-04-11Merge pull request #2044 from take-cheeze/const_argvYukihiro "Matz" Matsumoto
Qualify argv argument of API `const`.
2014-04-11Merge pull request #2043 from ksss/khash-fixYukihiro "Matz" Matsumoto
Fix bug kh_put after kh_del report by @mirichi