summaryrefslogtreecommitdiffhomepage
path: root/mrblib
AgeCommit message (Expand)Author
2013-07-23String `=~` and `match` to work with pluggable Regexp; close #1398Yukihiro "Matz" Matsumoto
2013-07-21Changed the attr methods in mrblib, so that they take advantage of validating...Ryan Scott
2013-07-19Wrote tests around attr, attr_reader, attr_writer, attr_accessorRyan Scott
2013-05-08Move comments from hash.c to hash.rb.Masaki Muranaka
2013-04-09Add NotImplementedError for Kernel.` and Kernel#`h2so5
2013-04-05sort mrblib/*.rb files to compile (class.rb comes before error.rb); close #11...Yukihiro "Matz" Matsumoto
2013-04-04Add `NameError#name`. Fix `NameError.new` and `NameError.initialize`. Enable ...Masaki Muranaka
2013-03-31Move Integer.{floor,ceil,round,truncate} to mrblib/. For maintainability.Masaki Muranaka
2013-03-27resolve conflict from #964Yukihiro Matz Matsumoto
2013-03-24Remove __printstr__mattn
2013-03-08Change unsigned char to uint8_tYuichiro MASUI
2013-03-08New mrb format. The detail is in https://github.com/mruby/mruby/issues/944Yuichiro MASUI
2013-03-03Remove trailing whitespaces. This is just a cosmetic change.Masaki Muranaka
2013-03-01Move mrblib for Structmattn
2013-02-23Support to build on pwd != mruby source rootYuichiro MASUI
2013-02-18adopt String#gsub to fixed split behaviorYukihiro Matz Matsumoto
2013-02-17String#gsub fix with last characterDaniel Bovensiepen
2013-02-12Added String#sub/sub! and String#gsub/gsub!Yuichiro MASUI
2013-02-09"for i in (1..12/5); p i ; end" should not print "3"Yukihiro Matz Matsumoto
2013-01-22Refine pretty printingJon
2013-01-21Beautify the output of rakeDaniel Bovensiepen
2013-01-20Improved build scripts and config filesYuichiro MASUI
2013-01-18fixed wrong loop termination introduced by 79d38c4Yukihiro Matz Matsumoto
2013-01-16check if array expands in each blockYukihiro Matz Matsumoto
2013-01-16check if array shrinks in each blockYukihiro Matz Matsumoto
2013-01-03Rebuild CRuby based building script without MakefileYuichiro MASUI
2012-12-19small refactoring for Array#eachYukihiro Matz Matsumoto
2012-12-19Update Array#each to be slightly faster.Ryan Scott Lewis
2012-12-16Fix a typo in commentYoji SHIDARA
2012-12-09Added LDFLAGS to MakefilesYuichiro MASUI
2012-12-07mange arena_idx smarter for smaller ARENA_SIZE; now default to 100 from 1024Yukihiro Matz Matsumoto
2012-11-02delete needless output in String#[]=skandhas
2012-11-01String#each_byte to use String#bytes; close #508Yukihiro Matsumoto
2012-10-29IO.printf returns nil on CRubyTomoyuki Sahara
2012-10-19wrong check of argument numbersYukihiro Matsumoto
2012-10-19add symbol style to Enumerable#injectYukihiro Matsumoto
2012-10-19Enumerable#inject should handle empty enumerable; http://www.tbn.co.jp/blog/?...Yukihiro Matsumoto
2012-09-29Remove extern mrb_top_self. It is declared in mruby.h.Masaki Muranaka
2012-09-15Integer#step addedYukihiro Matsumoto
2012-09-15Numeric#{upto,downto}: limit may not be an integerYukihiro Matsumoto
2012-09-10Fix writing errors in MakefilesDaniel Bovensiepen
2012-09-09mrb might be intialized incompletely from mrbc; close #457Yukihiro Matsumoto
2012-08-13`puts` should print "\n" only when the argument does not end with "\n".Masamitsu MURASE
2012-07-17print.rb: raise NotImplementedError for disabled methodsYukihiro Matsumoto
2012-07-15condition updated to preven printf from sprintf redefinitionYukihiro Matsumoto
2012-06-27raise NoImplementedError also for sprintf in case it isn't availableDaniel Bovensiepen
2012-06-27raise NotImplementedError in case of sprintf is missingDaniel Bovensiepen
2012-06-26raise NotImplementedError from regexp related string methods; close #319Yukihiro Matsumoto
2012-06-24avoid generating iv name each time in accessorsYukihiro Matsumoto
2012-06-22fixed attr_*: forgot '@'Yuichiro MASUI