summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
AgeCommit message (Collapse)Author
2013-04-21Add Symbol#to_proc, Symbol.all_symbolsh2so5
2013-04-20put spaces after if/whileYukihiro "Matz" Matsumoto
2013-04-19Add String#swapcase,swapcase!,concat,casecmp,start_with,end_withh2so5
2013-04-17Add mruby-proc-exth2so5
2013-04-14Add mruby-range-exth2so5
2013-04-11string interpolation (#{foo}) does stringify implicitly; no need to call #to_sYukihiro "Matz" Matsumoto
2013-04-11Merge branch 'fix-type-error-message' of https://github.com/h2so5/mruby into ↵Yukihiro "Matz" Matsumoto
h2so5-fix-type-error-message
2013-04-11Fix TypeError messagesh2so5
2013-04-11Merge branch 'monaka-pr-move-mirb-mruby-to-mrbgems'Yukihiro "Matz" Matsumoto
2013-04-11rename mruby,mirb gems to mruby-bin-{mruby,mirb}Yukihiro "Matz" Matsumoto
2013-04-11Move mirb and mruby to mrbgems.Masaki Muranaka
2013-04-08Change mruby-random License to MITMATSUMOTO Ryosuke
refs: http://www.math.sci.hiroshima-u.ac.jp/~m-mat/MT/MT2002/license.html
2013-04-04Use mrb_name_error() as possible.Masaki Muranaka
2013-04-04rename DATA API: mrb_get_datatype -> mrb_data_get_ptr; mrb_check_datatype -> ↵Yukihiro "Matz" Matsumoto
mrb_data_check_and_get
2013-04-01Fix to fit new raisef format.Masaki Muranaka
2013-03-29Rename mrb_fix2str() to mrb_fixnum_to_str(). This is for naming consistency.Masaki Muranaka
2013-03-29Remove mrb_flt2big() as there is no bignum in the core.Masaki Muranaka
Add new API mrb_flo_to_fixnum(). You can replace mrb_flt2big() to mrb_flo_to_fixnum() with few modifications.
2013-03-29Remove API mrb_string_value(). There have mrb_str_to_str() in the core. And ↵Masaki Muranaka
mrb_string_value() is no merit to keep using.
2013-03-29Remove limits.h from numeric.h. Add limits.h to some C files.Masaki Muranaka
2013-03-28Merge pull request #1091 from monaka/pr-fix-raisef-format-in-struct.cYukihiro "Matz" Matsumoto
Fix raisef() format strings in struct.c.
2013-03-28Fix format for new mrb_raisef().Masaki Muranaka
2013-03-28Fix raisef formats in struct.c.Masaki Muranaka
2013-03-27Use mrb_check_datatype directly to avoid warning.Carson McDonald
2013-03-27Fix build error on VS2012 toolchain.kurodash
A local variables define beginning of a scope block. VS2012 unacceptable ";;" in struct definition.
2013-03-27Add test for Random::srandMATSUMOTO Ryosuke
2013-03-27Fix test for mruby-randommattn
2013-03-27Add test for mruby-randommattn
2013-03-27Support mt instance valiablesMATSUMOTO Ryosuke
2013-03-26Refactoring mruby-randmattn
2013-03-26Add Random#rand and Random#srandMATSUMOTO Ryosuke
2013-03-26Add Kernel#rand and Kernel#srandMATSUMOTO Ryosuke
2013-03-26Changed to static functionsMATSUMOTO Ryosuke
2013-03-26Change Random module to classMATSUMOTO Ryosuke
2013-03-24Adjusted indent, space and tabMATSUMOTO Ryosuke
2013-03-24resolve conflictYukihiro Matz Matsumoto
2013-03-24Add mruby-printmattn
2013-03-23Modified license information for mruby-randomMATSUMOTO Ryosuke
2013-03-23Add mruby-random mrbgem (no activation though)MATSUMOTO Ryosuke
2013-03-23resolve conflict regarding backtickYukihiro Matz Matsumoto
2013-03-23add mruby-eval mrbgem (no activation though)Yukihiro Matz Matsumoto
2013-03-23Array bang methods should return nil if no change happenYukihiro Matz Matsumoto
2013-03-22Merge pull request #1044 from kouki-o-iij/pr-array-extYukihiro "Matz" Matsumoto
add method(uniq, -, |, &, flatten, compact) of Array to mruby-array-ext
2013-03-22Merge pull request #1045 from kouki-o-iij/pr-hash-extYukihiro "Matz" Matsumoto
add mruby-hash-ext mrbgem, and method: Hash#merge!
2013-03-22add mruby-hash-ext mrbgem, and method: Hash#merge!Kouki Ooyatsu
2013-03-22add Enumerable#group_byskandhas
2013-03-22add Enumerable#each_sliceskandhas
2013-03-22add method(uniq, -, |, &, flatten, compact) and test of Array to mruby-array-extKouki Ooyatsu
2013-03-22add Enumerable#each_consskandhas
2013-03-22Use mrb_intern2() instead of mrb_intern(). This is for avoiding overhead by ↵Masaki Muranaka
strlen().
2013-03-19Merge pull request #1034 from skandhas/pr-add-mruby-enumerable-extYukihiro "Matz" Matsumoto
add mrbgem: mruby-enum-ext and some methods.