summaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)Author
2016-11-22Fix typo in testYutaka HARA
2016-11-21Merge pull request #3259 from dabroz/feature-16bitfix1Yukihiro "Matz" Matsumoto
Fix for sprintf test exceeding bounds with MRB_INT16
2016-11-21Fix for sprintf test exceeding bounds with MRB_INT16Tomasz Dąbrowski
2016-11-21Merge pull request #3257 from ksss/range-sizeYukihiro "Matz" Matsumoto
Fix Range#size results
2016-11-19Use mrb_float instead of doubleksss
2016-11-19Fix Range#size resultsksss
2016-11-18Range#include?: simplify condition; ref #3255Yukihiro "Matz" Matsumoto
2016-11-18Merge pull request #3255 from ksss/range-includeYukihiro "Matz" Matsumoto
Fix condition of Range#include?
2016-11-18Fix condition of Range#include?ksss
2016-11-18Merge pull request #3254 from herwinw/docYukihiro "Matz" Matsumoto
Doc
2016-11-17Documented most methods in mruby/hash.hHerwin Weststrate
2016-11-17Documented most methods in mruby/array.hHerwin Weststrate
2016-11-17Typo fix: poped => poppedHerwin Weststrate
2016-11-17String#include? does not take integersYukihiro "Matz" Matsumoto
2016-11-17String#{strip,lstrip,rstrip} may cause OOB accessYukihiro "Matz" Matsumoto
2016-11-17Removed mruby-inline-struct gem from default.gembox; ref #3251Yukihiro "Matz" Matsumoto
bundled testing gems do not need to be included in default.gembox. all gems under mrbgems are linked automatically in the test process.
2016-11-17renamed "inline" to "istruct" to represent inline struct; ref #3251Yukihiro "Matz" Matsumoto
2016-11-17inline structures data type for mruby (MRB_TT_INLINE) (fix #3237)Tomasz Dąbrowski
Inline structures have no instance variables, no finalizer, and offer as much space as possible in RBASIC object. This means 24 bytes on 64-bit platforms and 12 bytes on 32-bit platforms. mruby-inline-struct gem is only provided for testing.
2016-11-17Merge pull request #3252 from BanzaiMan/patch-1Yukihiro "Matz" Matsumoto
Remove webhook notification for Travis CI
2016-11-17Merge pull request #3253 from ksss/rangeYukihiro "Matz" Matsumoto
Ranges should not rewrite
2016-11-17Ranges should not rewriteksss
2016-11-16Remove webhook notification for Travis CIHiro Asari
As travis-rubies now uses 3 Mac jobs to create archives for various OS releases. This is a bit wasteful if multiple builds pass in a short period. Instead, Travis CI is now running a nightly build of mruby-head (around 22:30 UTC). This will happen regardless of the state of the master branch.
2016-11-17Merge pull request #3250 from dabroz/feature-correct-aspecYukihiro "Matz" Matsumoto
Correct argument specifications for few methods
2016-11-16Correct argument specifications for few methods:Tomasz Dąbrowski
- Struct#values_at - Module#define_method - String#chop - String#chop!
2016-11-16Fixed off-by-one error in String#[]= with RangesYukihiro "Matz" Matsumoto
2016-11-16Fixed rindex calling into mrb_equal bugYukihiro "Matz" Matsumoto
Fixed by Alex Snaps and reported by Mathieu Leduc-Hamel, both from shopify.com. Thank you!
2016-11-16Fixed memory disclosure in String#linesYukihiro "Matz" Matsumoto
Reported from from Alex Snaps via Mathieu Leduc-Hamel, both from shopify.com. Thank you!
2016-11-16make String#[]= to take Ranges as position argumentYukihiro "Matz" Matsumoto
2016-11-16Fixed a memory problem in Array#to_hYukihiro "Matz" Matsumoto
Reported from Alex Snaps via Mathieu Leduc-Hamel, both from shopify.com. Thank you!
2016-11-15class/module statement should re-open; fix #3225Yukihiro "Matz" Matsumoto
2016-11-13move mrb_str_dup() to mrb_class_path; ref #2470Yukihiro "Matz" Matsumoto
Class#to_s used to return same string repeatedly, that mean you can modify "class name" by modifying the return value from Class#to_s.
2016-11-13rename mruby-module-ext to mruby-class-ext; ref #2470Yukihiro "Matz" Matsumoto
2016-11-13Implement Module#name.take_cheeze
Solves #2132.
2016-11-12Hash#[] to call Hash#defaultYukihiro "Matz" Matsumoto
2016-11-11Merge pull request #3224 from ksss/define_methodYukihiro "Matz" Matsumoto
Module#define_method supports proc argument
2016-11-11do not dump_node if parser failedYukihiro "Matz" Matsumoto
2016-11-11node_dump() to print NODE_HEREDOC terminatorYukihiro "Matz" Matsumoto
2016-11-11HEREDOC could fail with NUL terminated lines; fix#3244Yukihiro "Matz" Matsumoto
2016-11-11Merge pull request #3246 from ksss/cycleYukihiro "Matz" Matsumoto
Reimplement Enumerable#cycle
2016-11-11Add regression test for Enumerable#cycleksss
2016-11-11Reimplement Enumerable#cycleksss
Fix pattern of infinite loop And support all specs in https://github.com/ruby/spec/blob/27960d06e0ce92c37f074450f0eab4b0519b118c/core/enumerable/cycle_spec.rb without Enumerable#size
2016-11-11Merge pull request #3240 from dabroz/feature-fixtestYukihiro "Matz" Matsumoto
test/assert.rb should not use puts
2016-11-11Merge pull request #3234 from AltimitSystems/mrb.class_under_definedYukihiro "Matz" Matsumoto
Add mrb_class_defined_under
2016-11-10Merge branch 'mrb.class_under_defined'Felix Jones
2016-11-10Renamed class_under_defined to class_defined_underFelix Jones
2016-11-11fixed a bug when number of LHS and RHS differs; fix #3239Yukihiro "Matz" Matsumoto
2016-11-10test/assert.rb should not use putsTomasz Dąbrowski
2016-11-08class variables in higher order have a priority; fix #3235Yukihiro "Matz" Matsumoto
2016-11-08fixed a bug with [] in RHS of multiple assignments; fix #3236Yukihiro "Matz" Matsumoto
2016-11-07fixed wrong stack adjustment for ensure clauses; fix #3175Yukihiro "Matz" Matsumoto