summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-05-19Change fortmat to format.Carson McDonald
2013-05-18Merge pull request #1258 from luislavena/mrbc-dump-binaryYukihiro "Matz" Matsumoto
mrbc: use binary mode on outfile
2013-05-18mrbc: use binary mode on outfileLuis Lavena
This solves the problem of incorrect bytecode generated by mrbc for single files on Windows platform (which is by default text-mode)
2013-05-18Merge pull request #1257 from schmurfy/cleanupYukihiro "Matz" Matsumoto
removed unused variables / assigns never used
2013-05-18removed unused variables / assigns never usedJulien Ammous
2013-05-18indentation fixYukihiro "Matz" Matsumoto
2013-05-18remove unused local variableYukihiro "Matz" Matsumoto
2013-05-18Merge branch 'master' of https://github.com/Archytaus/mruby into ↵Yukihiro "Matz" Matsumoto
Archytaus-master
2013-05-18Merge remote-tracking branch 'origin/master'Ryan Scott
2013-05-18Cleanup of mruby_objectspace.c and removed the unneccessary README for ↵Ryan Scott
mruby_objectspace.
2013-05-18Added mruby-objectspace to the detault gembox.Ryan Scott
2013-05-18Fixed the each object callback to be more consistent with other callbacks.Ryan Scott
2013-05-18Changed the counting so that only objects that are alive are added to the ↵Ryan Scott
object counts.
2013-05-17Minor formatting change.Ryan Scott
2013-05-17Changed the each_object callback so that a pointer is passed for the object, ↵Ryan Scott
instead of the struct.
2013-05-17Removed debug outputRyan Scott
2013-05-17Changed the object_count so that it only iterates over the RBasic object, ↵Ryan Scott
not the full RVALUE known by the GC
2013-05-17First implementation of ObjectSpace moved outside of gc.cRyan Scott
2013-05-16Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2013-05-15Merge pull request #1255 from carsonmcdonald/mrbcoutwarnfixYukihiro "Matz" Matsumoto
Fix compiler warning by exiting if wfp isn't set
2013-05-15Fix compiler warning by exiting if wfp isn't setCarson McDonald
2013-05-15avoid unnecessary copy of context->filenameYukihiro "Matz" Matsumoto
2013-05-14mrbc to take multiple files, preserving debug information if -g given; close ↵Yukihiro "Matz" Matsumoto
#1243
2013-05-14Merge pull request #1252 from carsonmcdonald/fixfilenamesYukihiro "Matz" Matsumoto
Fix for issue 1243
2013-05-14Merge pull request #1253 from skandhas/pr-add-comments-for-array-extYukihiro "Matz" Matsumoto
add comments for mruby-array-ext
2013-05-14add comments for mruby-array-extskandhas
2013-05-13Fix off by one issueCarson McDonald
2013-05-13Add example of modifying mrbc options to add debug infoCarson McDonald
2013-05-13Allow mrbc command options to be changedCarson McDonald
2013-05-13Fix early free of irep->filenameCarson McDonald
2013-05-13forgot to add src/backtrace.cYukihiro "Matz" Matsumoto
2013-05-13show a backtrace when when an error occurs on gem load; close #1243Yukihiro "Matz" Matsumoto
2013-05-13move mruby's showcallinfo into the coreYukihiro "Matz" Matsumoto
2013-05-12Change in formatting for os_count_objects to be consistent with other functions.Ryan Scott
2013-05-12ObjectSpace.count_objects was incorrectly checking if an object was already ↵Ryan Scott
freed. Amended the count_objects test to ensure the correct distinction
2013-05-12Merge branch 'master' of git://github.com/mruby/mrubyRyan Scott
2013-05-12Implemented ObjectSpace.count_objects to count the number of allocated ↵Ryan Scott
objects for each type
2013-05-11Merge pull request #1249 from carsonmcdonald/typocleanupYukihiro "Matz" Matsumoto
Change alghorithm to algorithm
2013-05-11Merge pull request #1250 from Archytaus/masterYukihiro "Matz" Matsumoto
Fix for 'inline' macro redefinition error in VS2012 C++
2013-05-11Potential fix for 'inline' macro redefinition error - VS2012 C++Ryan Scott
2013-05-11Change alghorithm to algorithmCarson McDonald
2013-05-10change mrb_bug to get mrb_state and %S formatterYukihiro "Matz" Matsumoto
2013-05-10change mrb_warn to get mrb_state and %S formatterYukihiro "Matz" Matsumoto
2013-05-09Merge pull request #1248 from ktaobo/rename-yield-paramYukihiro "Matz" Matsumoto
Rename parameter names for mrb_yield
2013-05-10Rename parameter names for mrb_yieldKeita Obo
2013-05-09fix indentationYukihiro "Matz" Matsumoto
2013-05-09Merge pull request #1242 from schmurfy/gem_versionYukihiro "Matz" Matsumoto
consider gem version to be 0.0.0 unless specified
2013-05-09Merge pull request #1245 from NARKOZ/fix-warningsYukihiro "Matz" Matsumoto
remove unused variables
2013-05-09Merge pull request #1247 from carsonmcdonald/issue1246fixYukihiro "Matz" Matsumoto
Print mrb_value instead of RClass*
2013-05-09Print mrb_value instead of RClass*Carson McDonald