parkr (Parker M)
- Login: parkr
- Email: parkrmoore@gmail.com
- Registered on: 12/26/2013
- Last sign in: 03/19/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 2 | 2 |
Activity
03/19/2015
-
10:47 PM Ruby Feature #10982: Clarify location of NoMethod error
- This new syntax is a pretty sizable divergence from traditional Ruby error reporting. At the moment, errors generally (always?) have an accompanying stack trace:
```text
~$ ruby errors.rb
errors.rb:2:in `<main>': undefined method `c...
01/02/2015
-
09:58 PM Ruby Bug #10677: Regression: Time#parse no longer automatically converts to localtime
- I hear you, Akira. I am asking for a link to the issue or conversation that tracked this change. I want to know why the change was made in more detail, so I would like to read the discussion.
12/30/2014
-
03:36 AM Ruby Bug #10677: Regression: Time#parse no longer automatically converts to localtime
- Ok, thanks Nobuyoshi. Is this documented somewhere? It caused a lot of strife for me, and I don't think I'll be the only one. I wrote a [short post about it](https://byparker.com/blog/2014/ruby-2-2-0-time-parse-localtime-regression/) as ...
-
01:30 AM Ruby Bug #10677 (Rejected): Regression: Time#parse no longer automatically converts to localtime
- In Ruby 2.1 and before, `Time#parse` automatically converted to the localtime:
Ruby 2.1:
~~~ruby
>> require 'time'
=> true
> ...
=> "Australia/Melbourne"
>> Time.parse("2014-12-29 20:16:32 -0400")
=> 2014-12-30 11:16:32 +1100
...
12/28/2014
-
06:14 PM Ruby Feature #10666 (Rejected): Allow setting of default MIME type for WEBrick
- HTTPUtils [specifically specifies `application/octet-stream` as the fallback MIME Type](https://bugs.ruby-lang.org/projects/ruby-trunk/repository/entry/lib/webrick/httputils.rb#L131). Other web servers allow you to change the default to,...