| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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-15 | add new function mrb_load_irep_file_cxt() and simplifies mruby.c | Yukihiro "Matz" Matsumoto | |
| 2013-11-15 | fix irep memory leak | Yukihiro "Matz" Matsumoto | |
| 2013-11-13 | Changed a variable declaration to top of block | bggd | |
| 2013-11-10 | call codedump_all() from mirb if --verbose is set; close #1559 | Yukihiro "Matz" Matsumoto | |
| 2013-11-07 | modified to use irep->reps to reference child ireps. preparation for | Yukihiro "Matz" Matsumoto | |
| removing irep array from mrb_state. note that instructions OP_LAMBDA, OP_EXEC and OP_EPUSH are incompatible, and dumped mrb format has changed. | |||
| 2013-11-05 | resolved conflicts and updated to latest return value change of ↵ | Yukihiro "Matz" Matsumoto | |
| mrb_generate_code() | |||
| 2013-11-04 | add Fiber.current | Yukihiro "Matz" Matsumoto | |
| 2013-11-03 | mirb: reset stack in the first command | fleuria | |
| 2013-11-03 | refactor mrb_context_run() | fleuria | |
| 2013-11-03 | introduce mrb_context_run() | fleuria | |
| currently there are two scnenario to call mrb_run(), the first is calling a proc, in this case mrb should create a new environment, discarding all the variables except args, reciever and block. the second is calling the newly generated irep, like in mirb. in this case, the variables should be kept after mrb_run(). so we introduce mrb_context_run() to handle this seperately. | |||
| 2013-11-03 | small style fix | Yukihiro "Matz" Matsumoto | |
| 2013-11-03 | Merge branch 'master' of github.com:mruby/mruby | Yukihiro "Matz" Matsumoto | |
| 2013-11-02 | Added support for Random as an argument to shuffle and shuffle!. Refactored ↵ | Emiliano Lesende | |
| random gem to use DATA instance type and hold mt_state inside the DATA_PTR instead of in an instance variable. | |||
| 2013-11-02 | change return value from mrb_generate_code() | Yukihiro "Matz" Matsumoto | |
| 2013-11-01 | Added shuffle and shuffle! to the Array class in the Random gem. | Emiliano Lesende | |
| 2013-10-30 | Merge pull request #1510 from schmurfy/freebsd_fix | Yukihiro "Matz" Matsumoto | |
| fixed compilation on freebsd releases witout log2 function | |||
| 2013-10-08 | add some methods to Symbol | skandhas | |
| 2013-10-04 | fix no multiline strings in mirb | Lukas Stabe | |
| 2013-09-23 | eliminate use of traditional intern API (mrb_intern()) completely | Yuichi Nishiwaki | |
| 2013-09-23 | support freebsd versions without log2 function | Julien Ammous | |
| 2013-09-21 | rename voidp to cptr | Yukihiro "Matz" Matsumoto | |
| 2013-08-26 | Merge branch 'mruby' into pr-typeerror-string-start-end-with | Tomoyuki Sahara | |
| Conflicts: mrbgems/mruby-string-ext/src/string.c mrbgems/mruby-string-ext/test/string.rb | |||
| 2013-08-26 | Merge pull request #1485 from fjmilens3/string_end_with | Yukihiro "Matz" Matsumoto | |
| Bug in String#end_with? resulting from incorrect length determination | |||
| 2013-08-23 | Check type of arguments for #start_with and #end_with. | Tomoyuki Sahara | |
| 2013-08-22 | Refactor of String#start_with? comparison logic. | Frederick John Milens III | |
| 2013-08-22 | Refactor of String#end_with? comparison logic. | Frederick John Milens III | |
| 2013-08-22 | Fix for string-length-related issue in String#end_with? logic. | Frederick John Milens III | |
| 2013-08-22 | Added test case for String#end_with? with string of length 2. | Frederick John Milens III | |
| 2013-08-22 | Fix for string-length-related issue in String#start_with? logic. | Frederick John Milens III | |
| 2013-08-22 | Added test case for String#start_with? with string of length 1. | Frederick John Milens III | |
| 2013-08-19 | android doesn't have log2 | wanabe | |
| 2013-08-15 | remove alloc from Time class | Yukihiro "Matz" Matsumoto | |
| 2013-08-15 | redesign mruby/data.h API; use DATA_PTR() for raw data pointer, ↵ | Yukihiro "Matz" Matsumoto | |
| DATA_GET_PTR() to type safe retrieval (TypeError will be raised), DATA_CHECK_GET_PTR() to get nil if type mismatched | |||
| 2013-08-14 | define allocation method for Time class; close #1474 | Yukihiro "Matz" Matsumoto | |
