An error occurred fetching the project authors.
- 25 Apr, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 03 Apr, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 10 Feb, 2017 2 commits
-
-
Tomasz Dabrowski authored
-
Tomasz Dabrowski authored
- String#ljust and String#rjust are now C functions to improve performance - infinite loop because of an empty padding argument is now prevented (ArgumentError is raised) - extra tests for ljust/rjust added
-
- 23 Jan, 2017 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
The new API is: int mrb_range_beg_len(mrb, range, &beg, &len, len, trunc) The new argument `trunc` is a boolean value that specifies whether the function truncates the range. The new return value is an integer instead of a boolean, that is: 0: not a range 1: range with proper edges 2: out of range To get the old behavior, you have to rewrite: mrb_range_beg_len(mrb, range, &beg, &len, len) to: mrn_range_beg_len(mrb, range, &beg, &len, len, TRUE) == 1 [Breaking Change]
-
- 04 Jan, 2017 1 commit
-
-
ksss authored
Fix #3357
-
- 28 Dec, 2016 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 24 Nov, 2016 1 commit
-
-
Craig Lehmann authored
Prevents RCE Reported by https://hackerone.com/raydot
-
- 15 Nov, 2016 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
Reported from from Alex Snaps via Mathieu Leduc-Hamel, both from shopify.com. Thank you!
-
- 17 Aug, 2016 1 commit
-
-
Hiroshi Mimaki authored
-
- 27 Nov, 2015 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 21 Oct, 2015 1 commit
-
-
Seba Gamboa authored
This reverts commit 5cdcce8d.
-
- 20 Oct, 2015 1 commit
-
-
Seba Gamboa authored
-
- 23 Sep, 2015 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
define MRB_UTF8_STRING (in mrbconf.h) to enable UTF-8 support.
-
- 05 Aug, 2015 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 28 May, 2015 1 commit
-
- 18 Apr, 2015 1 commit
-
-
Kouhei Sutou authored
Here are suppressed warnings: src/fmt_fp.c: In function 'fmt_fp': src/fmt_fp.c:124:16: warning: initialization discards 'const' qualifier from pointer target type char *ss = (t&32)?"inf":"INF"; ^ src/fmt_fp.c:125:17: warning: assignment discards 'const' qualifier from pointer target type if (y!=y) ss=(t&32)?"nan":"NAN"; ^ mrbgems/mruby-string-ext/src/string.c: In function 'mrb_str_succ_bang': mrbgems/mruby-string-ext/src/string.c:302:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "1"; ^ mrbgems/mruby-string-ext/src/string.c:305:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "a"; ^ mrbgems/mruby-string-ext/src/string.c:308:27: warning: assignment discards 'const' qualifier from pointer target type if (e == b) prepend = "A"; ^ mrbgems/mruby-bin-mruby/tools/mruby/mruby.c: In function 'main': mrbgems/mruby-bin-mruby/tools/mruby/mruby.c:213:13: warning: assignment discards 'const' qualifier from pointer target type cmdline = args.cmdline ? args.cmdline : "-"; ^ mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c: In function 'print_breakpoint': mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type char* enable_letter[] = {BREAK_INFO_MSG_DISABLE, BREAK_INFO_MSG_ENABLE}; ^ mrbgems/mruby-bin-debugger/tools/mrdb/cmdbreak.c:159:3: warning: initialization discards 'const' qualifier from pointer target type
-
- 16 Dec, 2014 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
Jun Hiroe authored
-
- 21 Aug, 2014 1 commit
-
-
Tatsuhiko Kubo authored
-
- 11 Aug, 2014 3 commits
- 08 Aug, 2014 1 commit
-
-
mattn authored
-
- 11 Jun, 2014 1 commit
-
-
ksss authored
-
- 10 Jun, 2014 1 commit
-
-
Jun Hiroe authored
-
- 07 Jun, 2014 1 commit
-
-
Yukihiro "Matz" Matsumoto authored
-
- 04 Jun, 2014 2 commits
-
-
Yukihiro "Matz" Matsumoto authored
-
mattn authored
-
- 03 Jun, 2014 1 commit
-
-
Jun Hiroe authored
-
- 25 Apr, 2014 1 commit
-
-
take_cheeze authored
-
- 13 Apr, 2014 1 commit
-
-
cremno authored
-
- 27 Mar, 2014 2 commits
-
-
cubicdaiya authored
-
mattn authored
-
- 06 Mar, 2014 2 commits
- 07 Jan, 2014 1 commit
-
-
cremno authored
- 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)
-
- 23 Aug, 2013 3 commits
-
-
Tomoyuki Sahara authored
-
Frederick John Milens III authored
-
Frederick John Milens III authored
-