- 26 Feb, 2014 10 commits
-
-
Yukihiro "Matz" Matsumoto authored
Use mrb_str_new_lit instead of mrb_str_new for C string literal
-
cubicdaiya authored
-
Yukihiro "Matz" Matsumoto authored
fix bug for get_valid_iv_sym
-
Yukihiro "Matz" Matsumoto authored
use mrb_intern_lit instead of mrb_intern_cstr for C string literals
-
Yukihiro "Matz" Matsumoto authored
add test for __LINE__ and __FILE__
-
Yukihiro "Matz" Matsumoto authored
Introduce mrb_str_cat_lit
-
Yukihiro "Matz" Matsumoto authored
Use mrb_str_new_lit instead of mrb_str_new for C string literals
-
take_cheeze authored
-
cubicdaiya authored
When sub-string is used in the following way, it does not work well. o = Object.new o.instance_variable_set(:@a, 1) o.instance_variable_defined?("@abc"[0,2]) #=> false (this should be true)
-
cubicdaiya authored
-
- 25 Feb, 2014 18 commits
-
-
cubicdaiya authored
-
cubicdaiya authored
-
cubicdaiya authored
-
Yukihiro "Matz" Matsumoto authored
Specialize C++ compiler in clang toolchain.
-
Yukihiro "Matz" Matsumoto authored
Update README.md; The URL of the mruby home-page is accessible.
-
Yukihiro "Matz" Matsumoto authored
fix missing spaces.
-
Jun Hiroe authored
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
Tatsuya Matsumoto authored
-
take_cheeze authored
-
Yukihiro "Matz" Matsumoto authored
Implement default Random instance.
-
Yukihiro "Matz" Matsumoto authored
small-optimization for mrb_time_zone
-
cubicdaiya authored
mrb_str_new_static is more efficient than mrb_str_new in this case.
-
cubicdaiya authored
Using mrb_str_new instead of mrb_str_new_cstr
-
chasonr authored
Previously, the default random number generator was implemented using static storage. This storage is common to all instances of mruby in a process, and use of the default random number generator in one instance will perturb the default random number generator in other instances. It is also not thread safe. With this change, the default random number generator is defined as Random::DEFAULT, as it is in CRuby.
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
-
- 24 Feb, 2014 12 commits
-
-
Yukihiro "Matz" Matsumoto authored
add ruby and C code execution order note
-
take_cheeze authored
-
Yukihiro "Matz" Matsumoto authored
Always include build_config.rb to compile dependency.
-
Yukihiro "Matz" Matsumoto authored
add MRB_ prefix to STRINGIZE macro
-
Yukihiro "Matz" Matsumoto authored
Add target example for Intel Galileo board
-
Yukihiro "Matz" Matsumoto authored
limit preserved significand length
-
Yukihiro "Matz" Matsumoto authored
-
Yukihiro "Matz" Matsumoto authored
add 'd' format specifier in mrb_get_args and mruby-random gem improvement
-
kyab authored
-
take_cheeze authored
-
Yukihiro "Matz" Matsumoto authored
Issue minor corrections and updates to INSTALL file.
-
Yukihiro "Matz" Matsumoto authored
Add error for C99 style variable declaration on travis-ci
-