summaryrefslogtreecommitdiffhomepage
path: root/mrbgems
AgeCommit message (Collapse)Author
2013-03-08define and use print format macros for mrb_intCremno
For portability: %ld can't be used to print a 64-bit mrb_int on WIN(32|64) because long is 32-bit wide.
2013-03-08Merge pull request #968 from kouki-o-iij/pr-mrbgem-numeric-extYukihiro "Matz" Matsumoto
add mrbgems/ext/mruby-numeric, and method: Integer#chr
2013-03-08fix commentKouki Ooyatsu
2013-03-08add Integer#chr test case: multibyte (raise RangeError)Kouki Ooyatsu
2013-03-08add mrbgems/ext/mruby-numeric, and method: Integer#chrKouki Ooyatsu
2013-03-08add "strip" family to String.Tomoyuki Sahara
2013-03-08Add String#dump method.Masaki Muranaka
2013-03-07add mrbgems/mruby-string-ext, and method: String#getbyteskandhas
2013-03-04Separate Kernel#sprintf support from mruby core. It's moved to mrbgems.Masaki Muranaka
2013-03-04Move src/sprintf to mrbgems/mruby-sprintf/src/Masaki Muranaka
2013-03-03Remove trailing whitespaces. This is just a cosmetic change.Masaki Muranaka
2013-03-01Remove unused var svCarson McDonald
2013-03-02use TT_ARRAY instead of TT_DATAYukihiro Matz Matsumoto
2013-03-01Fix two typosCarson McDonald
2013-03-01replace instance_of check with structure checkYukihiro Matz Matsumoto
2013-03-01remove struct RStruct, use RArray insteadYukihiro Matz Matsumoto
2013-03-01fix indent in struct.cYukihiro Matz Matsumoto
2013-03-01internal array should be pudated using mrb_ary_set()Yukihiro Matz Matsumoto
2013-03-01Set nil to uninitialized membersmattn
2013-03-01Fix copy valuesmattn
2013-03-01Fixed GC guardmattn
2013-03-01Should be MRB_DATA class. RStruct isn't managed by mruby core. So it should ↵mattn
be self-managed class instances.
2013-03-01Move mrblib for Structmattn
2013-03-01Gemifymattn
2013-03-01Pluggable Structmattn
2013-02-28Move Math::TOLERANCE to mruby-mathDaniel Bovensiepen
2013-02-28mv mrgems/mruby-math to mrbgemsYukihiro Matz Matsumoto
2013-02-28s/mgem/mrbgem/Yuichiro MASUI
2013-01-03Rebuild CRuby based building script without MakefileYuichiro MASUI
Tested CRuby 1.8.6 and 1.9.3 You can see building configuration in build_config.rb
2012-12-26replace all slash to backslash in `cd /path/to/folder` for windows.mattn
2012-12-24Support GEM_LIBS_LIST in Makefile4gemMATSUMOTO Ryosuke
2012-12-22Merge pull request #668 from matsumoto-r/support_gem_flags_listYukihiro "Matz" Matsumoto
Support MakefileGemList for MRUBY_CFLAGS and MRUBY_LDFLAGS
2012-12-22Support MakefileGemList for MRUBY_CFLAGS and MRUBY_LDFLAGSMATSUMOTO Ryosuke
Other apps using mruby like mod_mruby easy to link mrbgems dynamically by MakefileGemList
2012-12-22Added MRUBY_LIBS to mrbgems MakefileYuichiro MASUI
2012-12-22Add MRUBY_CFLAGS / MRUBY_LDFLAGS to mrbgemsYuichiro MASUI
2012-12-18Merge pull request #639 from mattn/fix_buildYukihiro "Matz" Matsumoto
fix build
2012-12-18"#{MRUBY_ROOT}/mrbgems/g" add to the default search pathAkira Yumiyama
2012-12-18fix build: add LIBS flag. and fix quoted arguments on windows.mattn
2012-12-17Moved some building script from GNU make to Ruby scriptYuichiro MASUI
Added minirake what's Rake subset
2012-12-16Merge branch 'master' into use_ruby_for_buildingYuichiro MASUI
2012-12-16Moved some building script from GNU make to Ruby scriptYuichiro MASUI
Added minirake what's Rake subset
2012-12-14fgetc(3) returns int.Tomoyuki Sahara
Note: "char" is actually "unsigned char" on some platforms including NetBSD/arm. Comparing char value with EOF(-1) always fails on the platforms.
2012-12-11Merge pull request #621 from bovi/mrbgems-fixesYukihiro "Matz" Matsumoto
Mrbgems Dash Issue and better cleanup
2012-12-11Fixes the dash issue for pure Ruby GEMsDaniel Bovensiepen
2012-12-10Merge pull request #618 from iij/pr-generator-off-by-oneYukihiro "Matz" Matsumoto
fix an off-by-one error in mrbgems generator.
2012-12-10Merge pull request #617 from mattn/replace_dashYukihiro "Matz" Matsumoto
replace all '-' to '_' for mrbc.
2012-12-10Merge pull request #616 from mattn/fix_generatorYukihiro "Matz" Matsumoto
fix generator.
2012-12-11Improve cleanup target for mixed C and Ruby GEMsDaniel Bovensiepen
2012-12-11fix an off-by-one error.Tomoyuki Sahara
2012-12-11replace all '-' to '_' for mrbc.mattn