summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-10-23fix #1542fleuria
2013-10-23modify upto/downto for compatibilityYukihiro "Matz" Matsumoto
2013-10-22move some methods to make floats and integers compatible [mruby special]Yukihiro "Matz" Matsumoto
2013-10-22implement some Numeric methods in RubyYukihiro "Matz" Matsumoto
2013-10-21implement Integer#succ in RubyYukihiro "Matz" Matsumoto
2013-10-20Fixnum#succ may overflowYukihiro "Matz" Matsumoto
2013-10-16move declarations to the beginning of blocksYukihiro "Matz" Matsumoto
2013-10-15Merge pull request #1538 from carsonmcdonald/conststackfixYukihiro "Matz" Matsumoto
Set regs to stack on return of const_get calls before use
2013-10-15Set regs to stack on return of const_get calls before useCarson McDonald
2013-10-15better error position displayYukihiro "Matz" Matsumoto
2013-10-15define Module#const_missingYukihiro "Matz" Matsumoto
2013-10-09Merge pull request #1534 from skandhas/pr-add-some-symbol-methodsYukihiro "Matz" Matsumoto
Add some methods to Symbol
2013-10-09Merge pull request #1535 from matsumoto-r/del_unused_varaiableYukihiro "Matz" Matsumoto
remove unused value for mrb_gv_remove
2013-10-10add mrb_gv_remove(); untestedYukihiro "Matz" Matsumoto
2013-10-10remove unused value for mrb_gv_removeMATSUMOTO Ryosuke
2013-10-08add some methods to Symbolskandhas
2013-10-05simplify stack_clear()Yukihiro "Matz" Matsumoto
2013-10-03Merge pull request #1528 from Ahti/masterYukihiro "Matz" Matsumoto
fix no multiline strings in mirb
2013-10-04fix no multiline strings in mirbLukas Stabe
2013-10-02Merge pull request #1522 from bovi/patch-1Yukihiro "Matz" Matsumoto
Improve Grammar of Documentation
2013-10-01Merge pull request #1523 from wrl/relative-gembox-nokeywordYukihiro "Matz" Matsumoto
Implement gembox-relative gemdir paths
2013-10-01Fix for caller_dir relative gemsWilliam Light
2013-10-01Implement gembox-relative gemdir pathsWilliam Light
In the case where a relative path is specified to a gembox from build_config.rb, it was previously tricky to specify relative gem paths from inside that gembox. For example, consider a project in which mruby is checked out as a submodule in the project root: +- project_root | +- mruby/ | | | +- build_config.rb | | | +- ... | +- my_gembox/ | +- my_gembox.gembox | +- my_gem/ | +- mrbgem.rake | +- ... If build_config.rb refers to my_gembox with a relative path, it's difficult for my_gembox to then refer to my_gem. With this proposed change, my_gembox.gembox can look like this: MRuby::GemBox.new do |conf| conf.gem "my_gem" end
2013-10-02Improve Grammar of DocumentationDaniel Bovensiepen
2013-10-01Merge pull request #1520 from pbosetti/masterYukihiro "Matz" Matsumoto
Added test for inline arrays longer than 126 elements.
2013-10-01Merge pull request #1521 from Fleurer/issue-1519Yukihiro "Matz" Matsumoto
fix #1519
2013-10-01fix #1519fleuria
the 128th element in an array literal would trigger a corner case on splat mode checking, in which mruby will splat an that value into its parent array. the issue was masked by the fact of ary_concat() also accept non-array value: 1.9.3p286 :002> a = 1 1.9.3p286 :003> [*a] => [1] the expected behaviour should be OP_ARYPUSH the 128th element, instead of splat it by OP_ARYCAT.
2013-10-01Added test for inline arrays longer than 126 elements.Paolo Bosetti
2013-09-29Merge pull request #1518 from dmajkic/masterYukihiro "Matz" Matsumoto
Remove function delaration not implemented in code
2013-09-28Remove function delaration not implemented in codeDusan D. Majkic
2013-09-26Merge pull request #1515 from mynz/masterYukihiro "Matz" Matsumoto
fix build error when ENABLE_DEBUG is defined
2013-09-26fix build error when ENABLE_DEBUG is definedAtsushi_Morimoto
2013-09-25Merge pull request #1509 from FUKUZAWA-Tadashi/heredoc-bugfixYukihiro "Matz" Matsumoto
fix bugs on Heredocument
2013-09-25change type of mrb->c->status from uint8_t to enum mrb_fiber_state; #1511Yukihiro "Matz" Matsumoto
2013-09-24Merge pull request #1512 from wasabiz/eliminate-mrb-internYukihiro "Matz" Matsumoto
eliminate use of traditional intern API (mrb_intern()) completely
2013-09-23fix a bug introduced in prev commitYuichi Nishiwaki
2013-09-23eliminate use of traditional intern API (mrb_intern()) completelyYuichi Nishiwaki
2013-09-22fix bugs on HeredocumentFUKUZAWA-Tadashi
- heredoc in array literal - heredoc in args - heredoc in expression expand
2013-09-21Merge pull request #1507 from ktaobo/yield-selfYukihiro "Matz" Matsumoto
Use self for the given proc in mrb_yield
2013-09-21rename voidp to cptrYukihiro "Matz" Matsumoto
2013-09-21voidp should be an Object; close #1508Yukihiro "Matz" Matsumoto
2013-09-21index to mrb_digitmap[] should always be positiveYukihiro "Matz" Matsumoto
2013-09-20Use self for the given procKeita Obo
2013-09-20incomplete renaming node->filename -> node->filename_indexYukihiro "Matz" Matsumoto
2013-09-20remove unreferenced local variables caused by mrb_assert()Yukihiro "Matz" Matsumoto
2013-09-20rename node->filename to node->filename_indexYukihiro "Matz" Matsumoto
2013-09-20refactor genop_peep(); ref #1505Yukihiro "Matz" Matsumoto
2013-09-19Merge pull request #1505 from ktaobo/return-breaks-selfYukihiro "Matz" Matsumoto
Fixed self value in a block is changed with return value
2013-09-18Merge pull request #1503 from digitaltom/masterYukihiro "Matz" Matsumoto
remove executable bit from include/mruby/dump.h file
2013-09-18Fix self value in a block is changed with return value for Fixnum, nil, ↵Keita Obo
instance variable. Fix #1504