summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2013-02-20declare local variable at the start of a block in generated gem_test.cnkshigeru
2013-02-19Merge pull request #861 from cremno/regexp-parser-bugfixYukihiro "Matz" Matsumoto
regexp parsing bug if unknown option is used
2013-02-19Merge pull request #860 from iij/pr-gsub-testYukihiro "Matz" Matsumoto
update String#gsub test
2013-02-19Merge pull request #855 from ↵Yukihiro "Matz" Matsumoto
masamitsu-murase/support_parser_dump_for_regexp_literal parser_dump supports NODE_REGEX.
2013-02-19Merge pull request #853 from cremno/pluggable-regex-msvc-fixYukihiro "Matz" Matsumoto
MSVC: vars must be declared at the start of a block
2013-02-19Merge pull request #857 from mattn/remove_commentYukihiro "Matz" Matsumoto
Remove needless comment
2013-02-19s must not be freed, removed space in exc msgCremno
2013-02-20update String#gsub testAkira Yumiyama
2013-02-18Remove needless commentmattn
2013-02-18parser_dump supports NODE_REGEX.Masamitsu MURASE
2013-02-18vars must be declared at the start of a blockCremno
2013-02-18Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
2013-02-18adopt String#gsub to fixed split behaviorYukihiro Matz Matsumoto
2013-02-18String#split should honor limit argYukihiro Matz Matsumoto
2013-02-17Merge pull request #851 from mattn/bye_bye_regexpYukihiro "Matz" Matsumoto
Remove DISABLE_REGEXP
2013-02-17Merge pull request #852 from masuidrive/change_default_debug_flagYukihiro "Matz" Matsumoto
Changed debugger hook to disable
2013-02-18Changed debugger hook to disableYuichiro MASUI
2013-02-18Remove DISABLE_REGEXPmattn
2013-02-18remove TT_REGEX and TT_MATCHYukihiro Matz Matsumoto
2013-02-18rename hook and macroYukihiro Matz Matsumoto
2013-02-17Merge pull request #845 from masuidrive/hook_fetchYukihiro "Matz" Matsumoto
Added a hook at VM code fetch.
2013-02-17Merge pull request #850 from mattn/pluggable_regexpYukihiro "Matz" Matsumoto
Pluggable regexp
2013-02-17Merge pull request #849 from iij/pr-mrbtest-assert-extYukihiro "Matz" Matsumoto
add assert_{true,nil,equal} methods.
2013-02-18add assert_{true,nil,equal} methods.Akira Yumiyama
2013-02-18resolve conflictYukihiro Matz Matsumoto
2013-02-18:Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
Conflicts: src/class.c
2013-02-17Merge pull request #848 from carsonmcdonald/mirbreadlinefixYukihiro "Matz" Matsumoto
Fix mirb crash
2013-02-17Merge pull request #847 from bovi/gsubYukihiro "Matz" Matsumoto
String#gsub fix with last character
2013-02-17Merge pull request #846 from bovi/remove_const_docYukihiro "Matz" Matsumoto
Add Module#remove_const Test Case
2013-02-17Merge pull request #844 from skandhas/pr-fix-error-output-for-remove_constYukihiro "Matz" Matsumoto
fix incorrect output for Module#remove_const
2013-02-17Fix crash when exiting mirb using ctrl-d when compiled with readlineCarson McDonald
support.
2013-02-17String#gsub fix with last characterDaniel Bovensiepen
2013-02-16Add Module#remove_const testDaniel Bovensiepen
2013-02-17Created hook at VM code fetch. It's for debuggerYuichiro MASUI
2013-02-16fix error output for Module#remove_constskandhas
2013-02-16Merge branch 'master' of github.com:mruby/mrubyYukihiro Matz Matsumoto
2013-02-15Merge pull request #840 from brainopia/patch-2Yukihiro "Matz" Matsumoto
Extend MiniRake::DSL module to prevent inheritance pollution
2013-02-15ready to pass second argument of Regexp.newmattn
2013-02-15add "v" and "V".Tomoyuki Sahara
2013-02-15support "V" and "v".Tomoyuki Sahara
2013-02-15Merge branch 'master' of https://github.com/iij/mruby-packTomoyuki Sahara
2013-02-15use mrb_get_args("n") instead of decomposing each timeYukihiro Matz Matsumoto
2013-02-15fix an issue large/negative integer may not be packed/unpacked correctly.Tomoyuki Sahara
2013-02-15fix an issue negative integer may not be packed/unpacked correctly.Tomoyuki Sahara
2013-02-15REGEXP_CLASSmattn
2013-02-15add Module#remove_constYukihiro Matz Matsumoto
2013-02-15Should be OP_LOADLmattn
2013-02-15Pluggable Regexpmattn
2013-02-12Extend MiniRake::DSL module to prevent inheritance pollutionRavil Bayramgalin
```include MiniRake::DSL``` on toplevel will pollute ancestor tree of every object. ```extend MiniRake::DSL``` will add those methods only to ```main``` object. Rake does the same: https://github.com/jimweirich/rake/blob/master/lib/rake/dsl_definition.rb#L153
2013-02-11Merge pull request #839 from masuidrive/string_sub_gsubYukihiro "Matz" Matsumoto
Added String#sub/sub! and String#gsub/gsub!