index
:
mruby
master
mruby2-draft
removing-y-tab-c
revert-5391-throw
stable
web_export
Lightweight Ruby
realtradam
summary
refs
log
tree
commit
diff
homepage
log msg
author
committer
range
path:
root
/
mrbgems
Age
Commit message (
Expand
)
Author
2017-10-28
Add some peephole optimizations
Yukihiro "Matz" Matsumoto
2017-10-28
Change the order of "expected" and "actual" in test
Yukihiro "Matz" Matsumoto
2017-10-28
Flush stdout after every print from tests
Yukihiro "Matz" Matsumoto
2017-10-20
Add `Array#{permutation,combination}.
Yukihiro "Matz" Matsumoto
2017-10-18
Add `Kernel#itself`; CRuby2.2
Yukihiro "Matz" Matsumoto
2017-10-18
Add `Hash#to_proc`; CRuby2.3
Yukihiro "Matz" Matsumoto
2017-10-18
Add `Numeric#{positive?,negative?}`; CRuby2.3
Yukihiro "Matz" Matsumoto
2017-10-18
Add `Hash#fetch_values`; CRuby2.3
Yukihiro "Matz" Matsumoto
2017-10-17
Use a new function: `mrb_get_argc()`; ref #3826
Yukihiro "Matz" Matsumoto
2017-10-17
Add `{String,Symbol}#casecmp?`; CRuby2.4
Yukihiro "Matz" Matsumoto
2017-10-17
Add `Comparable#uniq`; CRuby2.4
Yukihiro "Matz" Matsumoto
2017-10-17
Add `Comparable#clamp`; CRuby2.4
Yukihiro "Matz" Matsumoto
2017-10-17
Add `String#delete_{prefix,suffix}`; CRuby2.5
Yukihiro "Matz" Matsumoto
2017-10-17
Add `Kernel#yield_self`; CRuby2.5
Yukihiro "Matz" Matsumoto
2017-10-17
`do/end` blocks to work with `rescue/ensure/else`; CRuby2.5
Yukihiro "Matz" Matsumoto
2017-10-17
Add more checks before accessing struct pointer; ref #3831
Yukihiro "Matz" Matsumoto
2017-10-16
Check struct-array pointer before accessing; fix #3831
Yukihiro "Matz" Matsumoto
2017-10-16
Need to adjust the stack length of the top-level environment; fix #3819
Yukihiro "Matz" Matsumoto
2017-10-15
fix alias for Struct accessors
dearblue
2017-10-12
Correct a small error in parse.y, which causes the reading of unassigned memo...
Carlo Prelz
2017-10-09
Fix parse error on TRICK2013/yhara
Nobuyoshi Nakada
2017-10-09
Replace lvar_defined with local_var_p
Nobuyoshi Nakada
2017-09-27
fix: src\print.c(22): warning C4244: 'initializing': conversion from 'mrb_int...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-time\src\time.c(641): warning C4244: '=': conversion from ...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-time\src\time.c(372): warning C4244: 'function': conversio...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-test\driver.c(67): warning C4244: '=': conversion from 'mr...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-string-ext\src\string.c(49): warning C4244: '=': conversio...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-string-ext\src\string.c(30): warning C4244: '=': conversio...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-string-ext\src\string.c(38): warning C4244: '=': conversio...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-sprintf\src\sprintf.c(1052): warning C4244: '+=': conversi...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-sprintf\src\sprintf.c(623): warning C4244: 'function': con...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-sprintf\src\sprintf.c(646): warning C4244: 'function': con...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-sprintf\src\sprintf.c(618): warning C4244: 'initializing':...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-sprintf\src\sprintf.c(516): warning C4244: 'function': con...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-math\src\math.c(660): warning C4244: 'function': conversio...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-math\src\math.c(491): warning C4244: '=': conversion from ...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-fiber\src\fiber.c(215): warning C4244: '=': conversion fro...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-exit\src\mruby-exit.c(10): warning C4244: 'function': conv...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-eval\src\eval.c(301): warning C4244: 'function': conversio...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-eval\src\eval.c(214): warning C4244: '=': conversion from ...
Tomasz Dąbrowski
2017-09-27
fix: mrbgems\mruby-compiler\core\parse.y(3455): warning C4244: 'function': co...
Tomasz Dąbrowski
2017-09-25
The `[]` special method call should be able to take a block.
Yukihiro "Matz" Matsumoto
2017-09-25
The `lex_state` after literals should be `EXPR_ENDARG`.
Yukihiro "Matz" Matsumoto
2017-09-25
The symbols should not take brace blocks.
Yukihiro "Matz" Matsumoto
2017-09-25
change DISABLE_STDIO to MRB_DISABLE_STDIO in mruby-time/time.c
Tomasz Dabrowski
2017-09-12
Remove temporary limitation of `OP_EPOP`.
Yukihiro "Matz" Matsumoto
2017-09-05
Restrict `OP_EPOP` operand to `1`; ref #3789
Yukihiro "Matz" Matsumoto
2017-09-02
Update print.c
fl0l0u
2017-08-30
Tested LocalJumpErrors caused by break in a proc
Christopher Aue
2017-08-28
Add `__ENCODING__' support.
Yukihiro "Matz" Matsumoto
[next]