| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-11-22 | Fix typo in test | Yutaka HARA | |
| 2016-11-21 | Merge pull request #3259 from dabroz/feature-16bitfix1 | Yukihiro "Matz" Matsumoto | |
| Fix for sprintf test exceeding bounds with MRB_INT16 | |||
| 2016-11-21 | Fix for sprintf test exceeding bounds with MRB_INT16 | Tomasz Dąbrowski | |
| 2016-11-21 | Merge pull request #3257 from ksss/range-size | Yukihiro "Matz" Matsumoto | |
| Fix Range#size results | |||
| 2016-11-19 | Use mrb_float instead of double | ksss | |
| 2016-11-19 | Fix Range#size results | ksss | |
| 2016-11-18 | Range#include?: simplify condition; ref #3255 | Yukihiro "Matz" Matsumoto | |
| 2016-11-18 | Merge pull request #3255 from ksss/range-include | Yukihiro "Matz" Matsumoto | |
| Fix condition of Range#include? | |||
| 2016-11-18 | Fix condition of Range#include? | ksss | |
| 2016-11-18 | Merge pull request #3254 from herwinw/doc | Yukihiro "Matz" Matsumoto | |
| Doc | |||
| 2016-11-17 | Documented most methods in mruby/hash.h | Herwin Weststrate | |
| 2016-11-17 | Documented most methods in mruby/array.h | Herwin Weststrate | |
| 2016-11-17 | Typo fix: poped => popped | Herwin Weststrate | |
| 2016-11-17 | String#include? does not take integers | Yukihiro "Matz" Matsumoto | |
| 2016-11-17 | String#{strip,lstrip,rstrip} may cause OOB access | Yukihiro "Matz" Matsumoto | |
| 2016-11-17 | Removed mruby-inline-struct gem from default.gembox; ref #3251 | Yukihiro "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-17 | renamed "inline" to "istruct" to represent inline struct; ref #3251 | Yukihiro "Matz" Matsumoto | |
| 2016-11-17 | inline 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-17 | Merge pull request #3252 from BanzaiMan/patch-1 | Yukihiro "Matz" Matsumoto | |
| Remove webhook notification for Travis CI | |||
| 2016-11-17 | Merge pull request #3253 from ksss/range | Yukihiro "Matz" Matsumoto | |
| Ranges should not rewrite | |||
| 2016-11-17 | Ranges should not rewrite | ksss | |
| 2016-11-16 | Remove webhook notification for Travis CI | Hiro 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-17 | Merge pull request #3250 from dabroz/feature-correct-aspec | Yukihiro "Matz" Matsumoto | |
| Correct argument specifications for few methods | |||
| 2016-11-16 | Correct argument specifications for few methods: | Tomasz Dąbrowski | |
| - Struct#values_at - Module#define_method - String#chop - String#chop! | |||
| 2016-11-16 | Fixed off-by-one error in String#[]= with Ranges | Yukihiro "Matz" Matsumoto | |
| 2016-11-16 | Fixed rindex calling into mrb_equal bug | Yukihiro "Matz" Matsumoto | |
| Fixed by Alex Snaps and reported by Mathieu Leduc-Hamel, both from shopify.com. Thank you! | |||
| 2016-11-16 | Fixed memory disclosure in String#lines | Yukihiro "Matz" Matsumoto | |
| Reported from from Alex Snaps via Mathieu Leduc-Hamel, both from shopify.com. Thank you! | |||
| 2016-11-16 | make String#[]= to take Ranges as position argument | Yukihiro "Matz" Matsumoto | |
| 2016-11-16 | Fixed a memory problem in Array#to_h | Yukihiro "Matz" Matsumoto | |
| Reported from Alex Snaps via Mathieu Leduc-Hamel, both from shopify.com. Thank you! | |||
| 2016-11-15 | class/module statement should re-open; fix #3225 | Yukihiro "Matz" Matsumoto | |
| 2016-11-13 | move mrb_str_dup() to mrb_class_path; ref #2470 | Yukihiro "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-13 | rename mruby-module-ext to mruby-class-ext; ref #2470 | Yukihiro "Matz" Matsumoto | |
| 2016-11-13 | Implement Module#name. | take_cheeze | |
| Solves #2132. | |||
| 2016-11-12 | Hash#[] to call Hash#default | Yukihiro "Matz" Matsumoto | |
| 2016-11-11 | Merge pull request #3224 from ksss/define_method | Yukihiro "Matz" Matsumoto | |
| Module#define_method supports proc argument | |||
| 2016-11-11 | do not dump_node if parser failed | Yukihiro "Matz" Matsumoto | |
| 2016-11-11 | node_dump() to print NODE_HEREDOC terminator | Yukihiro "Matz" Matsumoto | |
| 2016-11-11 | HEREDOC could fail with NUL terminated lines; fix#3244 | Yukihiro "Matz" Matsumoto | |
| 2016-11-11 | Merge pull request #3246 from ksss/cycle | Yukihiro "Matz" Matsumoto | |
| Reimplement Enumerable#cycle | |||
| 2016-11-11 | Add regression test for Enumerable#cycle | ksss | |
| 2016-11-11 | Reimplement Enumerable#cycle | ksss | |
| 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-11 | Merge pull request #3240 from dabroz/feature-fixtest | Yukihiro "Matz" Matsumoto | |
| test/assert.rb should not use puts | |||
| 2016-11-11 | Merge pull request #3234 from AltimitSystems/mrb.class_under_defined | Yukihiro "Matz" Matsumoto | |
| Add mrb_class_defined_under | |||
| 2016-11-10 | Merge branch 'mrb.class_under_defined' | Felix Jones | |
| 2016-11-10 | Renamed class_under_defined to class_defined_under | Felix Jones | |
| 2016-11-11 | fixed a bug when number of LHS and RHS differs; fix #3239 | Yukihiro "Matz" Matsumoto | |
| 2016-11-10 | test/assert.rb should not use puts | Tomasz Dąbrowski | |
| 2016-11-08 | class variables in higher order have a priority; fix #3235 | Yukihiro "Matz" Matsumoto | |
| 2016-11-08 | fixed a bug with [] in RHS of multiple assignments; fix #3236 | Yukihiro "Matz" Matsumoto | |
| 2016-11-07 | fixed wrong stack adjustment for ensure clauses; fix #3175 | Yukihiro "Matz" Matsumoto | |
