Malakai97 (Bryan Hockey)
- Login: Malakai97
- Email: bhock@umich.edu
- Registered on: 06/06/2014
- Last sign in: 01/25/2019
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 3 | 3 |
Activity
01/25/2019
-
08:16 PM Ruby Bug #15564: Pathname#+(pathpart) returns pathpart when pathpart is absolute
- Also affects #/
Also affects #join -
08:11 PM Ruby Bug #15564 (Rejected): Pathname#+(pathpart) returns pathpart when pathpart is absolute
- ```
abs = Pathname.new("/abs/dir")
my = Pathname.new("/my/path")
# actual
my/abs # => #<Pathname:/abs/dir>
# expected
my/abs # => #<Pathname:/my/dir/abs/dir>
```
While this behavior is desirable in #expand_path, here I beli...
10/25/2018
-
09:44 PM Ruby Bug #15254 (Rejected): Array#slice should not treat the index past the last element as a special case
- Array#slice should not treat the index past the last element as a special case. This causes Array#slice(start, length) has inconsistent behavior when given out of bounds values for the start parameter. It sometimes returns an array, and ...
06/06/2014
-
07:21 PM Ruby Bug #9913 (Closed): Digest == throws TypeError when testing against nil
- Also present in ruby -v: jruby 1.7.10 (1.9.3p392) 2014-01-09 c4ecd6b on OpenJDK 64-Bit Server VM 1.7.0_55-b14 [linux-amd64]
To recreate:
require 'digest'
x = Digest::SHA256.new()
x == nil
TypeError: can't convert nil into Strin...