summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2012-05-26Merge pull request #198 from bovi/add-compar-docYukihiro "Matz" Matsumoto
Add documentation to Comparable
2012-05-27Add documentation to ComparableDaniel Bovensiepen
2012-05-26clear arena_idx after exiting scope; close #195Yukihiro Matsumoto
2012-05-25Merge pull request #194 from bovi/add-more-testsYukihiro "Matz" Matsumoto
Add Tests for all Exception classes, for false, true, Proc, Module, nil ...
2012-05-25Add Tests for all Exception classes, for false, true, Proc, Module, nil and ↵Daniel Bovensiepen
Object
2012-05-25adjust stack position before exiting mrb_run(); close #193Yukihiro Matsumoto
2012-05-24remove ZeroDivisionError since mruby gives float for integer divisionYukihiro Matsumoto
2012-05-24parser->colum number was wrongYukihiro Matsumoto
2012-05-24wrong number of arguments for self-assignmentsYukihiro Matsumoto
2012-05-23Merge pull request #189 from bovi/add-kernel-testsYukihiro "Matz" Matsumoto
Add ISO Test Cases for Kernel
2012-05-23Merge pull request #188 from thecodeshop/makefile-modsYukihiro "Matz" Matsumoto
Makefile mods
2012-05-24Add ISO Test Cases for KernelDaniel Bovensiepen
2012-05-23Clean and DRY up the basic MakefilesJon
2012-05-23Add `help` and `showconfig` targets to MakefileJon
2012-05-23Merge pull request #187 from thecodeshop/mirb-exitYukihiro "Matz" Matsumoto
Teach mirb another way to quit
2012-05-24raise error on too many argumentsYukihiro Matsumoto
2012-05-24simplify Array#joinYukihiro Matsumoto
2012-05-23Teach mirb another way to quitJon
2012-05-24made mrb_get_args() better (optinal args, type checks); close #173 #176Yukihiro Matsumoto
2012-05-23remove warning for open paren after spaceYukihiro Matsumoto
2012-05-23allow empty paren as a valid exprYukihiro Matsumoto
2012-05-23test t/*.rb spacing fixYukihiro Matsumoto
2012-05-23add dependency from keywords to lex.defYukihiro Matsumoto
2012-05-22Merge pull request #183 from thecodeshop/cmake-missYukihiro "Matz" Matsumoto
Add CMake support authorship miss
2012-05-22Add CMake support authorship missJon
2012-05-23cast style consistencyYukihiro Matsumoto
2012-05-23add CMakeFiles and CMakeCache.txt to .gitignoreYukihiro Matsumoto
2012-05-22Merge pull request #180 from mitchblank/masterYukihiro "Matz" Matsumoto
call mrb_close() in tools and test programs
2012-05-23update the desciption regarding comforming to ISO, and provided toolsYukihiro Matsumoto
2012-05-23Merge branch 'master' of github.com:mruby/mrubyYukihiro Matsumoto
2012-05-22Merge pull request #178 from monaka/pr-avoid-redundant-redeclaration-20110522Yukihiro "Matz" Matsumoto
Avoid warning: redundant redeclaration of ‘OnigEncDefaultCharEncoding’
2012-05-23explicit normalization -0.0 to 0.0Yukihiro Matsumoto
2012-05-22Merge pull request #182 from thecodeshop/cmakeYukihiro "Matz" Matsumoto
Add CMake build infrastructure
2012-05-22Add native and cross compiling CMake build supportJon
2012-05-22First cmake build system. Works on Linux.Beoran
2012-05-22remove unused prototype from hash.hYukihiro Matsumoto
2012-05-22remove unused MT code from hash.hYukihiro Matsumoto
2012-05-22should mark iv from MRB_TT_DATAYukihiro Matsumoto
2012-05-22change example code to do mrb_close()Mitchell Blank Jr
I was hoping this would cause valgrind to complain less, but there is still a lot of memory leaked (does mrb_close() actually free all of the managed blocks?) Anyway this helps somewhat and is good practice
2012-05-22Merge remote-tracking branch 'upstream/master'Mitchell Blank Jr
Conflicts: src/time.c
2012-05-22Avoid warning: redundant redeclaration of ‘OnigEncDefaultCharEncoding’Masaki Muranaka
2012-05-22always use value.i for MRB_TT_FALSEYukihiro Matsumoto
2012-05-21use mrb_int for struct tm fractionsYukihiro Matsumoto
2012-05-21use mrb's allocator; thanks to @mitchblankYukihiro Matsumoto
2012-05-20Use integer constants to initialize mrb_intMitchell Blank Jr
As per monaka's comment here... https://github.com/mruby/mruby/pull/175 ...changing these initializations of mrb_int values to use integer constants
2012-05-20make mrb_time_local() arguments consistentMitchell Blank Jr
* mrb_time_gm() uses mrb_int * Same for mrb_time_initialize() * The parameters to time_mktime() are mrb_int, and that's what these values are passed to So I don't see why mrb_time_local() works on mrb_float instead. Lets make it consistent with the other methods defined in time.c
2012-05-21print description on exceptionsYukihiro Matsumoto
2012-05-21wrong stack position in rescue clauseYukihiro Matsumoto
2012-05-20Merge pull request #171 from mitchblank/cplusplusYukihiro "Matz" Matsumoto
More C++ compilability work: mrb_obj_alloc void* conversions
2012-05-20More C++ compilability work: mrb_obj_alloc void* conversionsMitchell Blank Jr
One of the biggest set of changes needed to make C++ compile, is that you can't autoconvert "void*" to a different pointer type without a cast (you can of course, convert pointers *to* "void*"!) For the first part, convert the users of "mrb_obj_alloc". Since it has to return something, make it RBasic* (that's what mrb_obj_alloc() is operating on anyway). This way, even in C you'll get a warning if you don't cast it. For places where there are a lot of similar calls to mrb_obj_alloc(), this can be easily hidden through a macro. I did this in string.c: #define mrb_obj_alloc_string(mrb) ((struct RString *) mrb_obj_alloc((mrb), MRB_TT_STRING, (mrb)->string_class)) I also updated the mrb_object() macro to also return a RBasic* -- my previous commit changed that from "void*" -> "RObject*", but I figure it should be consistent with mrb_obj_alloc()