1. 18 Dec, 2019 1 commit
  2. 17 Dec, 2019 4 commits
  3. 16 Dec, 2019 6 commits
  4. 15 Dec, 2019 1 commit
  5. 14 Dec, 2019 3 commits
    • KOBAYASHI Shuji's avatar
      Remove location info from `Exception#inspect` · d2f2f9db
      KOBAYASHI Shuji authored
      Because location info (file name and line number) is kept in the backtrace,
      it should not be kept in the result of `inspect` (and the exception object
      itself), I think.
      
      ### Example
      
        ```ruby
        # example.rb
        begin
          raise "err"
        rescue => e
          p e
        end
        ```
      
      #### Before this patch:
      
        ```
        $ bin/mruby example.rb
        example.rb:2: err (RuntimeError)
        ```
      
      #### After this patch:
      
        ```
        $ bin/mruby example.rb
        err (RuntimeError)
        ```
      d2f2f9db
    • dearblue's avatar
      Remove module only methods from class · cc52fa66
      dearblue authored
      The `#prepend_features` and `#module_function` methods are not haves for
      class objects.
      cc52fa66
    • dearblue's avatar
      Fix mruby-io test for mingw32 · ec1ef925
      dearblue authored
      Need `mkstemp()` implements.
      ec1ef925
  6. 13 Dec, 2019 2 commits
  7. 12 Dec, 2019 1 commit
  8. 11 Dec, 2019 1 commit
  9. 10 Dec, 2019 3 commits
  10. 09 Dec, 2019 8 commits
  11. 08 Dec, 2019 3 commits
  12. 07 Dec, 2019 2 commits
  13. 05 Dec, 2019 3 commits
  14. 04 Dec, 2019 1 commit
    • KOBAYASHI Shuji's avatar
      Refine `mrb_alloca()` · a030446a
      KOBAYASHI Shuji authored
      * The allocated memory is guaranteed to be aligned for any data type (it was
        not guaranteed when string type is embed).
      * Make allocation size exactly specified size (does not allocate space for a
        null byte).
      a030446a
  15. 03 Dec, 2019 1 commit