| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-02-21 | use mrb_intern_lit in mruby-random | take_cheeze | |
| 2014-02-14 | Give the type 'void' to functions have no argument. | cubicdaiya | |
| According to the C standard, it is desirable to give the type 'void' to functions have no argument. | |||
| 2014-02-14 | add a regression test for #1706 | Li Yazhou | |
| 2014-02-14 | keep stack with nlocals instead of nregs; fix #1706 | Li Yazhou | |
| 2014-02-14 | Merge pull request #1702 from cremno/hash-hash-ext-changes | Yukihiro "Matz" Matsumoto | |
| hash / hash-ext: various small changes | |||
| 2014-02-13 | mrb_str_cat2: deprecated since 0cedf8f | cremno | |
| 2014-02-13 | hash / hash-ext: various small changes | cremno | |
| src/hash.c: - mrb_hash_(aget|aset|dup|delete): internal linkage - remove documentation of methods which are not implemented (in here) - remove #assoc; unused, not in ISO spec - remove #rassoc: same, implementation is also wrong hash-ext mrbgem: - remove header "mruby/khash.h" - remove mrb_hash_values_at (move code into hash_values_at, i: long -> int) - less whitespace in gem_init function | |||
| 2014-02-12 | mruby-math: remove Cygwin compatibility macros | cremno | |
| nan: The first non-test release of Cygwin 1.5.x was over a decade ago: <http://cygwin.com/ml/cygwin-announce/2003-09/msg00001.html> log/log10: This workaround is not needed anymore (1.2.6.1, 1.3 - both over 6 years ago): <https://sourceware.org/cgi-bin/cvsweb.cgi/src/newlib/libm/math/w_log.c?cvsroot=src> | |||
| 2014-02-10 | resolve conflict in travis_config.rb | Yukihiro "Matz" Matsumoto | |
| 2014-02-09 | initialize ci->stackent at the top; #1691 | Yukihiro "Matz" Matsumoto | |
| 2014-02-09 | Merge pull request #1674 from cremno/mrb_bool-FALSE-TRUE | Yukihiro "Matz" Matsumoto | |
| use mrb_bool, FALSE and TRUE more | |||
| 2014-02-08 | Merge pull request #1689 from Bovi-Li/remove-notice | Yukihiro "Matz" Matsumoto | |
| Remove *very early version* notice | |||
| 2014-02-08 | made mrb_define_class to return existing class, with heavy refactoring | Yukihiro "Matz" Matsumoto | |
| 2014-02-08 | Remove notice of early version | Daniel Bovensiepen | |
| 2014-02-07 | move version info from gems to core; ref #576 #1684 | Yukihiro "Matz" Matsumoto | |
| 2014-02-06 | introduce mrb_str_new_lit() to create strings from C string litrals | Yukihiro "Matz" Matsumoto | |
| 2014-02-05 | Fix MRUBY_BIRTH_YEAR | MATSUMOTO Ryosuke | |
| 2014-02-05 | Add global constant MRUBY_COPYRIGHT | MATSUMOTO Ryosuke | |
| 2014-02-05 | replace Kernel.show_version with MRUBY_DESCRIPTION | MATSUMOTO Ryosuke | |
| 2014-02-05 | Fix release date | MATSUMOTO Ryosuke | |
| 2014-02-05 | Add pluggable versioning by mruby-version | MATSUMOTO Ryosuke | |
| 2014-02-04 | Remove warning | mattn | |
| 2014-02-04 | fibers cannot cross C function boundary; close #1680 | Yukihiro "Matz" Matsumoto | |
| 2014-01-31 | use mrb_bool, FALSE and TRUE more | cremno | |
| It doesn't matter to me if one is using FALSE/TRUE instead of 1/0 but I prefer a type (alias) which emphasizes boolean vars to int. I changed 1/0 to FALSE/TRUE anyway. | |||
| 2014-01-31 | rework mruby-objectspace and gc.[ch] | cremno | |
| - functions should have C linkage (for C++ code) - add prefix to each_object_callback - use more appropriate variable types / initialization - ObjectSpace::count_objects has 1 opt. arg. - prefer mrb_intern_lit to mrb_intern_cstr for str. lit. - mruby/value.h is included by mruby.h - adjust coding style | |||
| 2014-01-31 | Merge pull request #1671 from cremno/extern-cleanup | Yukihiro "Matz" Matsumoto | |
| clean up external symbols | |||
| 2014-01-31 | add missing declaration of mrb_str_format | cremno | |
| 2014-01-31 | clean up external symbols | cremno | |
| remove unused and unneeded: - sysexit_status - type (a global variable) add mrb_ prefix to: - codedump_all - class_instance_method_list - parser_dump make various functions static, incl.: - yyparse - make_exception | |||
| 2014-01-30 | move Array#[] tests from mrbgems to test/t/array.rb | Yukihiro "Matz" Matsumoto | |
| 2014-01-29 | move range aware aget to array.c from mruby-array-ext gem | Yukihiro "Matz" Matsumoto | |
| 2014-01-23 | fix utf-8 codepage | h2so5 | |
| 2014-01-16 | Increase test coverage of mruby-struct | Carson McDonald | |
| 2014-01-10 | Merge pull request #1655 from pbosetti/master1.0.0 | Yukihiro "Matz" Matsumoto | |
| Added rewrite of Array#[] to mruby-array-ext gem | |||
| 2014-01-10 | String#length should be an alias of String#size | h2so5 | |
| 2014-01-10 | Added rewrite of Array#[] to mruby-array-ext gem, so that arrays can be sliced | Paolo Bosetti | |
| with Ranges (as a[1..-2]) | |||
| 2014-01-07 | Merge pull request #1651 from h2so5/string-reverse-utf8 | Yukihiro "Matz" Matsumoto | |
| add String#reverse, String#reverse! for UTF-8 | |||
| 2014-01-08 | add String#reverse, String#reverse! for UTF-8 | h2so5 | |
| 2014-01-07 | remove superfluous includes | cremno | |
| - reduce compile time by a little bit (full-core: ~0.7s for me) - thanks to 'include-what-you-use' for some help - include Standard C header files before any other (coding style) | |||
| 2014-01-07 | Remove duplicate test | mattn | |
| 2014-01-07 | mruby-string-utf8: redefine String#size for UTF-8 string; #1646 | Yukihiro "Matz" Matsumoto | |
| 2014-01-07 | mruby-string-utf8: UTF-8 string may contail NUL; #1646 | Yukihiro "Matz" Matsumoto | |
| 2014-01-07 | Add mruby-string-utf8 | mattn | |
| 2014-01-02 | Merge pull request #1634 from cremno/use-mrb_fixnum_p | Yukihiro "Matz" Matsumoto | |
| tiny word boxing optimization | |||
| 2014-01-02 | remove various preprocessor conditionals | cremno | |
| - HAVE_IEEEFP_H is nowhere defined or needed at all - FreeBSD < 4 is unsupported since years - MSVC workaround (around what exactly?) | |||
| 2014-01-02 | tiny word boxing optimization | cremno | |
| 2013-12-27 | add String#partition and String#rpartition. | Tomoyuki Sahara | |
| 2013-12-01 | add mrb_intern_lit for creating symbol from string literal | take_cheeze | |
| 2013-11-29 | rename mrb_intern2() to mrb_intern(); huge API incompatibility; close #1513 | Yukihiro "Matz" Matsumoto | |
| 2013-11-16 | add regression for #1563 | fleuria | |
| 2013-11-16 | add regression for #1572 | fleuria | |
