An error occurred fetching the project authors.
  1. 25 Jul, 2021 1 commit
  2. 08 May, 2021 1 commit
  3. 24 Apr, 2021 1 commit
  4. 22 Apr, 2021 1 commit
  5. 19 Apr, 2021 1 commit
  6. 14 Mar, 2021 1 commit
  7. 08 Mar, 2021 2 commits
  8. 03 Mar, 2021 6 commits
  9. 01 Mar, 2021 1 commit
  10. 28 Feb, 2021 4 commits
  11. 26 Jan, 2021 1 commit
  12. 22 Jan, 2021 1 commit
    • Yukihiro "Matz" Matsumoto's avatar
      Minimize the changes in #5277 · dc51d89a
      Yukihiro "Matz" Matsumoto authored
      Instead of including `mruby/presym.h` everywhere, we provided the
      fallback `mruby/presym.inc` under `include/mruby` directory, and specify
      `-I<build-dir>/include` before `-I<top-dir>/include` in `presym.rake`.
      So even when someone drops `-I<build-dir>/include` in compiler options,
      it just compiles without failure.
      Unverified
      dc51d89a
  13. 11 Jan, 2021 1 commit
  14. 21 Nov, 2020 1 commit
    • KOBAYASHI Shuji's avatar
      Rename `MRB_{ENABLE,DISABLE}_` to `MRB_{USE,NO}_`; close #5163 · 3d056d08
      KOBAYASHI Shuji authored
      |        Previous Name         |        New Name         |
      |------------------------------|-------------------------|
      | MRB_ENABLE_ALL_SYMBOLS       | MRB_USE_ALL_SYMBOLS     |
      | MRB_ENABLE_SYMBOLL_ALL       | MRB_USE_ALL_SYMBOLS     |
      | MRB_ENABLE_CXX_ABI           | MRB_USE_CXX_ABI         |
      | MRB_ENABLE_CXX_EXCEPTION     | MRB_USE_CXX_EXCEPTION   |
      | MRB_ENABLE_DEBUG_HOOK        | MRB_USE_DEBUG_HOOK      |
      | MRB_DISABLE_DIRECT_THREADING | MRB_NO_DIRECT_THREADING |
      | MRB_DISABLE_STDIO            | MRB_NO_STDIO            |
      | ENABLE_LINENOISE             | MRB_USE_LINENOISE       |
      | ENABLE_READLINE              | MRB_USE_READLINE        |
      | DISABLE_MIRB_UNDERSCORE      | MRB_NO_MIRB_UNDERSCORE  |
      | DISABLE_GEMS                 | MRB_NO_GEMS             |
      
      * `MRB_ENABLE_SYMBOLL_ALL` seems to be a typo, so it is fixed.
      * `MRB_` prefix is added to those without.
      * The previous names can also be used for compatibility.
      3d056d08
  15. 12 Oct, 2020 8 commits
  16. 20 Jun, 2020 1 commit
  17. 08 Mar, 2020 1 commit
  18. 12 Feb, 2020 1 commit
  19. 31 Dec, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Silence GCC warning in `time.c` on Travis CI · b493229a
      KOBAYASHI Shuji authored
      Silence the following warnings:
      
        ```
        /mruby/mrbgems/mruby-time/src/time.c:260:55: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
          if ((MRB_INT_MAX > MRB_TIME_MAX && i > 0 && i > MRB_TIME_MAX) ||
                                                        ^
        ```
      b493229a
  20. 05 Dec, 2019 1 commit
  21. 03 Dec, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Silence Clang warning with `MRB_INT64` and `MRB_32BIT` in `time.c` · ea1911d2
      KOBAYASHI Shuji authored
      Silence the following warnings:
      
        ```
        /mruby/mrbgems/mruby-time/src/time.c:871:15: warning: result of comparison of constant 9223372036854775807 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare]
          if (tm->sec > MRB_INT_MAX || tm->sec < MRB_INT_MIN) {
              ~~~~~~~ ^ ~~~~~~~~~~~
        /mruby/mrbgems/mruby-time/src/time.c:871:40: warning: result of comparison of constant -9223372036854775808 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare]
          if (tm->sec > MRB_INT_MAX || tm->sec < MRB_INT_MIN) {
                                       ~~~~~~~ ^ ~~~~~~~~~~~
        /mruby/mrbgems/mruby-time/src/time.c:887:16: warning: result of comparison of constant 9223372036854775807 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare]
          if (tm->usec > MRB_INT_MAX || tm->usec < MRB_INT_MIN) {
              ~~~~~~~~ ^ ~~~~~~~~~~~
        /mruby/mrbgems/mruby-time/src/time.c:887:42: warning: result of comparison of constant -9223372036854775808 with expression of type 'time_t' (aka 'long') is always false [-Wtautological-constant-out-of-range-compare]
          if (tm->usec > MRB_INT_MAX || tm->usec < MRB_INT_MIN) {
                                      ~~~~~~~~ ^ ~~~~~~~~~~~
        ```
      ea1911d2
  22. 02 Dec, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Silence Clang warning with `MRB_INT32` and `MRB_64BIT` in `time.c` · 69735390
      KOBAYASHI Shuji authored
      Silence the following warning:
      
        ```
        /mruby/mrbgems/mruby-time/src/time.c:258:60: warning: result of comparison of constant -9223372036854775808 with expression of type 'mrb_int' (aka 'int') is always false [-Wtautological-constant-out-of-range-compare]
              if ((mrb_time_int)i > MRB_TIME_MAX || MRB_TIME_MIN > i) {
                                                    ~~~~~~~~~~~~ ^ ~
        ```
      69735390
  23. 31 Oct, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Set `MRB_STR_ASCII` flag to some stringize methods · ad6c5897
      KOBAYASHI Shuji authored
      - `Fixnum#to_s`, `Fixnum#inspect`
      - `Float#to_s`, `Float#inspect`
      - `NilClass#to_s`, `NilClass#inspect`
      - `FalseClass#to_s`, `FalseClass#inspect`
      - `TrueClass#to_s`, `TrueClass#inspect`
      - `Time#to_s`, `Time#inspect`
      ad6c5897
  24. 10 Oct, 2019 1 commit