| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-04-26 | Add `assert_raise_with_message` and `assert_raise_with_message_pattern` | KOBAYASHI Shuji | |
| 2019-04-26 | Add customized `mrb_ro_data_p()` | dearblue | |
| User definable `mrb_ro_data_p()` functions are available by defining `MRB_USE_CUSTOM_RO_DATA_P`. (Limitation) It can not be defined as an inline function. | |||
| 2019-04-26 | Merge pull request #4405 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/singleton-class-of-frozen-object-should-be-frozen Singleton class of frozen object should be frozen | |||
| 2019-04-25 | Singleton class of frozen object should be frozen | KOBAYASHI Shuji | |
| Before this patch: p (class << Object.new.freeze; self end).frozen? #=> false sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> false After this patch / Ruby: p (class << Object.new.freeze; self end).frozen? #=> true sc = class << (o=Object.new); self end; o.freeze; p sc.frozen? #=> true | |||
| 2019-04-25 | Merge pull request #4402 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-modiying-class-variable-to-frozen-class Fix modiying class variable to frozen class/module | |||
| 2019-04-24 | Add mruby binary loader functions from buffer memory | dearblue | |
| Add new functions (with `MRB_API`): - `mrb_read_irep_buf()` - `mrb_load_irep_buf()` - `mrb_load_irep_buf_cxt()` | |||
| 2019-04-24 | Check mruby binary size | dearblue | |
| 2019-04-24 | Check mruby binary version | dearblue | |
| 2019-04-24 | Fix modiying class variable to frozen class/module | KOBAYASHI Shuji | |
| 2019-04-24 | Reorganize defines related to `MRB_INLINE`; ref #4391 | Yukihiro "Matz" Matsumoto | |
| 2019-04-24 | Remove unnecessary `mrb_regexp_check()` and related functions. | Yukihiro "Matz" Matsumoto | |
| 2019-04-24 | Merge pull request #4401 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-ambiguous-first-argument-warning-in-test-t-float.rb Fix "ambiguous first argument" warning in `test/t/float.rb` | |||
| 2019-04-23 | Fix "ambiguous first argument" warning in `test/t/float.rb` | KOBAYASHI Shuji | |
| 2019-04-23 | Fix name assignment to frozen anonymous class/module | KOBAYASHI Shuji | |
| Fix the following issues: A = Class.new.freeze #=> FrozenError Module.new::B = Class.new.freeze #=> FrozenError String::B = Module.new.freeze #=> FrozenError | |||
| 2019-04-23 | Fixed the condition in `mrb_funcall_with_block`; fix #4389 | Yukihiro "Matz" Matsumoto | |
| 2019-04-22 | Merge pull request #4356 from shuujii/add-assert_match-and-assert_not_match | Yukihiro "Matz" Matsumoto | |
| Add `assert_match` and `assert_not_match` | |||
| 2019-04-22 | Merge branch 'shuujii-add-assert_predicate-and-assert_operator' | Yukihiro "Matz" Matsumoto | |
| 2019-04-22 | Add `assert_predicate` and `assert_operator` | KOBAYASHI Shuji | |
| 2019-04-22 | Merge pull request #4391 from dearblue/inlines | Yukihiro "Matz" Matsumoto | |
| Change modifier to `MRB_INLINE` from `static inline` | |||
| 2019-04-22 | Merge pull request #4399 from shuujii/use-MRB_ASPEC_XXX-macro-in-codedump | Yukihiro "Matz" Matsumoto | |
| Use `MRB_ASPEC_XXX()` macro in `codedump()` | |||
| 2019-04-22 | Use `MRB_ASPEC_XXX()` macro in `codedump()` | KOBAYASHI Shuji | |
| 2019-04-22 | Merge pull request #4396 from shuujii/commented-out-String-scan | Yukihiro "Matz" Matsumoto | |
| Commented out `String#scan` because it is not implemented yet | |||
| 2019-04-22 | Merge pull request #4395 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/expand-BOXWORD_SET_VALUE-macro-in-include-mruby-boxing_word.h Expand `BOXWORD_SET_VALUE()` macro in `include/mruby/boxing_word.h` | |||
| 2019-04-21 | Commented out `String#scan` because it is not implemented yet | KOBAYASHI Shuji | |
| 2019-04-20 | Expand `BOXWORD_SET_VALUE()` macro in `include/mruby/boxing_word.h` | KOBAYASHI Shuji | |
| In `SET_OBJ_VALUE()`, branch isn't removed because `switch` condition isn't constant expression. | |||
| 2019-04-20 | Merge pull request #4393 from robfors/twiddle_wakka | Yukihiro "Matz" Matsumoto | |
| Fixes the twiddle wakka comparison algorithm | |||
| 2019-04-20 | Merge pull request #4390 from shuujii/add-type-check-in-String-aset | Yukihiro "Matz" Matsumoto | |
| Add type check (conversion) in `String#[]=` | |||
| 2019-04-19 | Fixes the twiddle wakka comparison algorithm to support passing only a major ↵ | Rob | |
| number | |||
| 2019-04-20 | Merge pull request #4392 from dearblue/true-false-p | Yukihiro "Matz" Matsumoto | |
| Add `mrb_true_p()` and `mrb_false_p()` macro functions | |||
| 2019-04-19 | Add `mrb_true_p()` and `mrb_false_p()` macro functions | dearblue | |
| 2019-04-19 | Change modifier to `MRB_INLINE` from `static inline` | dearblue | |
| 2019-04-19 | Add type check (conversion) in `String#[]=` | KOBAYASHI Shuji | |
| Before this patch: 'a'[0] = 1 #=> 1 'a'[:a] = '1' #=> ArgumentError 'a'[:a, 0] = '1' #=> ArgumentError 'a'[0, :a] = '1' #=> ArgumentError 'a'[0, 1] = 1 #=> 1 After this patch / Ruby: 'a'[0] = 1 #=> TypeError 'a'[:a] = '1' #=> TypeError 'a'[:a, 0] = '1' #=> TypeError 'a'[0, :a] = '1' #=> TypeError 'a'[0, 1] = 1 #=> TypeError | |||
| 2019-04-19 | Merge pull request #4388 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/remove-duplicated-include-Comparable-in-mrblib-string.rb Remove duplicated `include Comparable` in `mrblib/string.rb` | |||
| 2019-04-18 | Remove duplicated `include Comparable` in `mrblib/string.rb` | KOBAYASHI Shuji | |
| 2019-04-18 | Merge pull request #4387 from shuujii/add-Array-sample-test | Yukihiro "Matz" Matsumoto | |
| Add `Array#sample` test | |||
| 2019-04-17 | Add `Array#sample` test | KOBAYASHI Shuji | |
| And simplify tests for `Array#shuffle` and `Array#shuffle!`. | |||
| 2019-04-17 | Merge pull request #4386 from tomas/stable | Yukihiro "Matz" Matsumoto | |
| Fix compilation on gcc 4.9.x | |||
| 2019-04-16 | Prevent 'mixed declarations and code' C90 warning | Tomás Pollak | |
| 2019-04-16 | Fix compilation on gcc 4.9.x | Tomas Pollak | |
| 2019-04-16 | Merge pull request #4385 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/avoid-potential-zero-size-array-declaration Avoid potential zero size array declaration; fix #4382 | |||
| 2019-04-16 | Avoid potential zero size array declaration; fix #4382 | KOBAYASHI Shuji | |
| 2019-04-16 | Fixed a bug in recursive `mrb_top_run` calls; fix #4384 | Yukihiro "Matz" Matsumoto | |
| 2019-04-16 | Merge pull request #4383 from Shokuji/fix_mruby-io_test | Yukihiro "Matz" Matsumoto | |
| Fix test in mruby-io | |||
| 2019-04-16 | Merge branch 'master' into fix_mruby-io_test | Shokuji | |
| 2019-04-16 | Merge pull request #4381 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/fix-missing-assertions-in-mruby-random-test Fix missing assertions in `mruby-random` test | |||
| 2019-04-15 | Fix missing assertions in `mruby-random` test | KOBAYASHI Shuji | |
| 2019-04-15 | Fix test, popen and cmd in mruby-io | Shouji Kuboyama | |
| 2019-04-15 | Fixed wrong function names; fix #4380 | Yukihiro "Matz" Matsumoto | |
| 2019-04-15 | Merge pull request #4379 from ↵ | Yukihiro "Matz" Matsumoto | |
| shuujii/extract-similar-codes-to-macros-for-math-opcode-in-mrb_vm_exec Extract similar codes to macros for math opcode in `mrb_vm_exec()` | |||
| 2019-04-14 | Extract similar codes to macros for math opcode in `mrb_vm_exec` | KOBAYASHI Shuji | |
