- 28 Feb, 2014 12 commits
-
-
cubicdaiya authored
According to CONTRIBUTING.md, Don't use C++ style comments /* This is the prefered comment style */ Use C++ style comments only for temporary comment e.g. commenting out some code lines.
-
Yukihiro "Matz" Matsumoto authored
Please add me to the author.
-
take_cheeze authored
-
Yukihiro "Matz" Matsumoto authored
mrb_fiber_yield() is available now; you have to link mruby-fiber mrbgem to use the function; there's no function available to create new fiber from C (countapart of Lua's lua_newthread), but that's because you cannot create a new fiber from C due to mruby C API design limitation. define your method to create fibers in Ruby; close #1269
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Implement sprintf("%c") for UTF-8.
-
Yukihiro "Matz" Matsumoto authored
-
chasonr authored
The string is "Hello world" in Japanese. (hat tip: Google Translate.)
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
fix SEGV bug for mrb_str_new_static
-
- 27 Feb, 2014 21 commits
-
-
ksss authored
-
cubicdaiya authored
mrb_str_new_static causes seg-fault when 3rd argument is negative.
-
Yukihiro "Matz" Matsumoto authored
fix SEGV bug for mrb_str_new
-
cubicdaiya authored
mrb_str_new causes seg-fault when 3rd argument is negative.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Add mruby-strip tool to strip irep's debug info.
-
Yukihiro "Matz" Matsumoto authored
make mrb_str_dump a bit faster
-
Yukihiro "Matz" Matsumoto authored
move check condition to outside in while block
-
Yukihiro "Matz" Matsumoto authored
Refactor tests in kernel.rb
-
Yukihiro "Matz" Matsumoto authored
use mrb_str_cat_lit() intead of mrb_str_cat
-
take_cheeze authored
-
cubicdaiya authored
-
ksss authored
-
Jun Hiroe authored
-
cubicdaiya authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Add test for Kernel#instance_variable_defined?
-
Yukihiro "Matz" Matsumoto authored
Could you add me to AUTHORS?
-
chasonr authored
-
chasonr authored
* sprintf("%c") is changed to accept a string for which String#size returns 1, even if it is longer than one byte, and to convert a Fixnum via Fixnum#chr (possibly returning more than one byte). Thus, if the UTF-8 gem is in use, a character will be understood as a single UTF-8 character. * The change to sprintf depends on the implementation of Fixnum#chr added to mrbgems/mruby-string-utf8/src/string.c. This should work with any other gem that implements a multibyte encoding, as long as it implements String#size and Fixnum#chr as appropriate.
-
cubicdaiya authored
-
- 26 Feb, 2014 7 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
Delete `!!Notice!!` intro paragraph from README
-
Patrick Ellis authored
It's become misleading since the release of 1.0.0 and the launch of mruby.org.
-
Yukihiro "Matz" Matsumoto authored
revert 38e9ce21 and API changed; mrb_get_backtrace() -> renamed to mrb_exc_backtrace since this is a backtrace method implementation of Exception; mrb_get_backtrace_at() -> removed; mrb_get_backtrace() -> added to get backtrace in array (like caller)
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-