| Age | Commit message (Collapse) | Author |
|
|
|
Solves #2132.
|
|
|
|
Module#define_method supports proc argument
|
|
|
|
|
|
|
|
Reimplement Enumerable#cycle
|
|
|
|
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
|
|
test/assert.rb should not use puts
|
|
Add mrb_class_defined_under
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Update documentation of fetch
|
|
The sentence `Negative values of +index+ count from the end of the array.` can be interpreted that it only holds if a block is given. Clarify it.
|
|
|
|
|
|
|
|
|
|
Kernel#respond_to? should return true|false only
|
|
|
|
|
|
|
|
|
|
Android Task GCC support re-added
|
|
|
|
|
|
|
|
Android mips/mips64 support
|
|
|
|
NDK search paths.
|
|
|
|
|
|
Removed trailing spaces
|
|
|
|
Fix unexpected behavior with break
|
|
|
|
Remove needless MRB_API
|
|
```
def yie
yield
end
def bre
yie {
1+1
break
}
end
p bre #=> display 2, but should be nil
```
|