1. 19 Dec, 2019 4 commits
  2. 18 Dec, 2019 3 commits
  3. 17 Dec, 2019 4 commits
  4. 16 Dec, 2019 6 commits
  5. 15 Dec, 2019 1 commit
  6. 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
  7. 13 Dec, 2019 2 commits
  8. 12 Dec, 2019 1 commit
  9. 11 Dec, 2019 1 commit
  10. 10 Dec, 2019 3 commits
  11. 09 Dec, 2019 8 commits
  12. 08 Dec, 2019 3 commits
  13. 07 Dec, 2019 1 commit