summaryrefslogtreecommitdiffhomepage
path: root/mrbgems/mruby-hash-ext
AgeCommit message (Collapse)Author
2014-04-30remove trailing spacesNobuyoshi Nakada
2014-04-27add Hash#fetch; close #2134Yukihiro "Matz" Matsumoto
2014-04-25Use mrb_int in mrbgem rest argument getting.take_cheeze
2014-03-21reduce hash creation by using update methodYukihiro "Matz" Matsumoto
2014-03-21add Hash#each_pairYukihiro "Matz" Matsumoto
2014-03-17move summary of mrbgems in default gembox to its spectake_cheeze
2014-02-22add test(requires MRB_GC_FIXED_ARENA enabled)take_cheeze
2014-02-22fix possible arena overflowtake_cheeze
2014-02-13hash / hash-ext: various small changescremno
src/hash.c: - mrb_hash_(aget|aset|dup|delete): internal linkage - remove documentation of methods which are not implemented (in here) - remove #assoc; unused, not in ISO spec - remove #rassoc: same, implementation is also wrong hash-ext mrbgem: - remove header "mruby/khash.h" - remove mrb_hash_values_at (move code into hash_values_at, i: long -> int) - less whitespace in gem_init function
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)
2013-08-04Improve test of mruby-hash-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-05-08Move Hash#values_at to mruby-hash-ext gem.Masaki Muranaka
2013-05-03add type check in Hash#merge!Gilad Zohari
2013-03-22add mruby-hash-ext mrbgem, and method: Hash#merge!Kouki Ooyatsu