summaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)Author
2012-06-02ensure str_modify is called at the beginning of modifying methodsYukihiro Matsumoto
2012-06-02mrb_str_concat was broken for shared strings; close #214Yukihiro Matsumoto
2012-06-01OP_RETURN operand should be stack position of the new scope, not the current ↵Yukihiro Matsumoto
scope
2012-06-01rest argument offset might be -1 that means emptyYukihiro Matsumoto
2012-06-01remove unused mrb_f_send; and rename mrb_f_send_m to mrb_f_sendYukihiro Matsumoto
2012-06-01remove spawn (and backtick) method that cannot be implemented without ↵Yukihiro Matsumoto
platform support
2012-06-01reorder arguments to mrb_get_args in mrb_f_send_mYukihiro Matsumoto
2012-06-01symbol table key should be mrb_sym, not int32_tYukihiro Matsumoto
2012-06-01Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-05-31Merge pull request #211 from MobiRuby/add_kernel_sendYukihiro "Matz" Matsumoto
add Kernel#send
2012-06-01Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-06-01add Kernel#sendYuichiro MASUI
2012-06-01remove unnecessary header inclusion from hash.cYukihiro Matsumoto
2012-06-01new API mrb_gc_protect() to add object to arenaYukihiro Matsumoto
2012-06-01small refactoring; hash->ht should not be NULLYukihiro Matsumoto
2012-06-01values need not to dup unlike keysYukihiro Matsumoto
2012-06-01reorder mrb_ary_new_from_values() args to (argc, argv)Yukihiro Matsumoto
2012-06-01remove prototype for mrb_exec_recursive_paired()Yukihiro Matsumoto
2012-06-01stop using mrb_exec_recursive_paired() from Array comparisonYukihiro Matsumoto
2012-06-01stop using mrb_exec_recursive_paired() from Hash#==Yukihiro Matsumoto
2012-06-01hash function should use #eql? internallyYukihiro Matsumoto
2012-06-01hash function should use #hash internallyYukihiro Matsumoto
2012-06-01add inline to KHASH_INIT functionsYukihiro Matsumoto
2012-05-31Add Module.const_defined? && _get && _set methodsYuichiro MASUI
2012-05-31correctly share string bodiesYukihiro Matsumoto
2012-05-31remove unused prototypesYukihiro Matsumoto
2012-05-31remove unused str_new_frozenYukihiro Matsumoto
2012-05-31shared strings should not chainYukihiro Matsumoto
2012-05-31remove unused variableYukihiro Matsumoto
2012-05-31remove unused str_new_frozenYukihiro Matsumoto
2012-05-31allow string shared bodyYukihiro Matsumoto
2012-05-31remove encoding filesYukihiro Matsumoto
2012-05-31remove transcode.c and trancecode_data.hYukihiro Matsumoto
2012-05-31reimplement String#*Yukihiro Matsumoto
2012-05-31reimplement String#<=>Yukihiro Matsumoto
2012-05-31reimplement String#capitalizeYukihiro Matsumoto
2012-05-31reimplement String#chompYukihiro Matsumoto
2012-05-31reimplement String#upcaseYukihiro Matsumoto
2012-05-31reimplement String#downcaseYukihiro Matsumoto
2012-05-31reimplement String#replaceYukihiro Matsumoto
2012-05-31allow ||= and &&=Yukihiro Matsumoto
2012-05-31resolve conflictYukihiro Matsumoto
2012-05-31resolve conflictYukihiro Matsumoto
2012-05-31wrong String#index behavior on udef INCLUDE_ENCODINGYukihiro Matsumoto
2012-05-31wrong String#inspect behavior on udef INCLUDE_ENCODINGYukihiro Matsumoto
2012-05-31the argument for Exception.new is optinalYukihiro Matsumoto
2012-05-31mrb_gets_args strict argc check; now returns argcYukihiro Matsumoto
2012-05-31remove #new from immediate classesYukihiro Matsumoto
2012-05-30rename ruby_digitmap to mrb_digitmapYukihiro Matsumoto
2012-05-30stop duping values from Hash#valuesYukihiro Matsumoto