summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-09-06Fix SEGV when unshared envksss
2016-09-05Merge pull request #3204 from ksss/midYukihiro "Matz" Matsumoto
Should clear method name
2016-09-05Should clear method nameksss
- Fix method name in top-level - Fix SEGV when call Exception#backtrace if callinfo over CALLINFO_INIT_SIZE(32)
2016-09-05Merge pull request #3202 from pbosetti/masterYukihiro "Matz" Matsumoto
In mrbgem_spec.rake, added support for @mrblib_dir @objs_dir, so that a gem can have custom source directory names
2016-09-05Merge pull request #3203 from nozomiS/mrbc_filename-fixYukihiro "Matz" Matsumoto
Fix mrbc_filename leak
2016-09-04- fix mrbc_filename leak; cxt->filename would not be freed until the state ↵Nozomi SATO
is closed.
2016-09-02In mrbgem_spec.rake, added support for @mrblib_dir @objs_dir, so that a gem ↵Paolo Bosetti
can have custom source directory names
2016-08-31Merge pull request #3192 from ksss/instance_evalYukihiro "Matz" Matsumoto
instance_eval env should remake Fix #3191
2016-08-30mruby-random: fixed typosYukihiro "Matz" Matsumoto
2016-08-30mruby-random: add reporting URL since we modified the sourceYukihiro "Matz" Matsumoto
2016-08-20Fixed spell errors in test/t/lang.rb; ref #3199Yukihiro "Matz" Matsumoto
2016-08-20Merge pull request #3199 from miura1729/originalYukihiro "Matz" Matsumoto
Add new test for optimize VM
2016-08-20Add new test for optimize VMMiura Hideki
2016-08-20Move Module#include and #prepend to class.c; ref #3197Yukihiro "Matz" Matsumoto
To avoid VM nesting with mrb_funcall()
2016-08-19renamed class.rb and error.rb to ensure they are read first; ref #3197Yukihiro "Matz" Matsumoto
2016-08-19Merge pull request #3198 from nobu/feature/lparen_arg-stmtYukihiro "Matz" Matsumoto
parse.y: lparen_arg statement
2016-08-19parse.y: lparen_arg statementNobuyoshi Nakada
allow parenthesised statement as a method argument. reported [Feature:12686] in bugs.ruby-lang.org fixed in CRuby 2.4.
2016-08-17Merge pull request #3196 from mimaki/fix-negative-ordYukihiro "Matz" Matsumoto
Fix String#ord failure which return a negative value
2016-08-17Fix String#ord failure which return a negative valueHiroshi Mimaki
2016-08-16Merge pull request #3195 from franckverrot/masterYukihiro "Matz" Matsumoto
Correct method name
2016-08-15Correct method nameFranck Verrot
2016-08-13Merge pull request #3194 from nobu/chained-rhsYukihiro "Matz" Matsumoto
parse.y: fix chained assignments
2016-08-13parse.y: fix chained assignmentsNobuyoshi Nakada
fix syntax errors with chained assignment with op assign. reported [Bug:12669] in bugs.ruby-lang.org fixed in CRuby 2.4.
2016-08-12Merge pull request #3193 from nobu/rhs-rescueYukihiro "Matz" Matsumoto
parse.y: simplify 90e8ce5
2016-08-12parse.y: simplify 90e8ce5Nobuyoshi Nakada
simplify tOP_ASGN rules by command_rhs and arg_rhs rules with %prec.
2016-08-11parse.y: rescue modifiers for OP_ASGN should protect rhs onlyYukihiro "Matz" Matsumoto
reported in [Bug:12402] in bugs.ruby-lang.org fixed in CRuby 2.4
2016-08-10Merge pull request #64 from asfluido/masterTomoyuki Sahara
Apparently, in mruby-process gem, Process is now a Module, not a Class
2016-08-09Apparently, in mruby-process gem, Process is now a Module, not a ClassCarlo - PERI
2016-08-08instance_eval env should remake Fix #3191ksss
2016-08-08removed ChangeLog that has not been updated for long time; ref #3190Yukihiro "Matz" Matsumoto
2016-08-08update copyright notice and license description for mt19937ar.[ch]Yukihiro "Matz" Matsumoto
despite the fact original authors agreed to distribute their work under MIT license, it does not mean mt19937ar.[ch] became the work of mruby developers. To clarify, we updated copyright and license notice of the source files.
2016-08-08Merge pull request #63 from ksss/optTomoyuki Sahara
Enable option :in, :out, :err to IO.popen
2016-08-08Merge pull request #62 from ksss/globalTomoyuki Sahara
Should use global variable
2016-08-07Enable Fixnum optionksss
2016-08-07Enable option :in, :out, :errksss
2016-08-06Should use global variableksss
2016-08-03Merge pull request #3189 from wrl/public-hash-valuesYukihiro "Matz" Matsumoto
make mrb_hash_values() a public API function
2016-08-01make mrb_hash_values() a public API functionWilliam Light
2016-07-31Merge pull request #3188 from guoxiao/warningYukihiro "Matz" Matsumoto
intptr_t should be used instead of uint32_t to hold a pointer.
2016-07-31intptr_t should be used instead of uint32_t to hold a pointer.Guo Xiao
Fix warning: cast from pointer to integer of different size [-Wpointer-to-int-cast]
2016-07-28Merge pull request #3186 from rmalizia44/patch-2Yukihiro "Matz" Matsumoto
Update mirb.c
2016-07-27Update mirb.cMalizia R
2016-07-27Merge pull request #3185 from kou/string-reduce-needless-arrayYukihiro "Matz" Matsumoto
Reduce needless Array generation in some String methods
2016-07-27Reduce needless Array generation in some String methodsKouhei Sutou
Here are some benchmarks: each_char: # /tmp/each_char.rb a = "a" * 1000000 a.each_char do |x| end Without this change: % time bin/mruby /tmp/each_char.rb bin/mruby /tmp/each_char.rb 1.07s user 0.02s system 99% cpu 1.088 total With this change: % time bin/mruby /tmp/each_char.rb bin/mruby /tmp/each_char.rb 0.52s user 0.01s system 99% cpu 0.530 total 2 times faster with this change. codepoints: # /tmp/codepoints.rb a = "a" * 1000000 a.codepoints do |x| end Without this change: % time bin/mruby /tmp/codepoints.rb bin/mruby /tmp/codepoints.rb 1.16s user 0.05s system 99% cpu 1.216 total With this change: % time bin/mruby /tmp/codepoints.rb bin/mruby /tmp/codepoints.rb 0.56s user 0.02s system 99% cpu 0.589 total
2016-07-27Merge pull request #3184 from ksss/each_charYukihiro "Matz" Matsumoto
Support to call without block to String#each_char
2016-07-26Support to call without block to String#each_charksss
2016-07-26Merge pull request #3182 from sdottaka/fix-broken-msvc-buildYukihiro "Matz" Matsumoto
Fix broken msvc build
2016-07-26Merge pull request #3181 from sdottaka/fix-crash-on-mrb_parser_freeYukihiro "Matz" Matsumoto
Fix crash in mrb_parser_free() due to freed memory access
2016-07-25Merge pull request #3183 from Mav7/mav7/docsYukihiro "Matz" Matsumoto
yard docs for string.h
2016-07-25Merge pull request #3179 from ksss/structYukihiro "Matz" Matsumoto
Should not define to `Struct` class