woollyams (Mike Williams)
- Login: woollyams
- Email: mdub@dogbiscuit.org
- Registered on: 08/22/2011
- Last sign in: 02/25/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/25/2015
-
11:02 PM Ruby Feature #8544: OpenURI should open 'file://' URIs
- Here's a naive implementation of support for "file:"
require 'open-uri'
require 'uri'
module URI
class File < Generic
def open(*args, &block)
::File.open(self.path, &block)
end
...
08/22/2011
-
03:31 PM Ruby Bug #5211 (Rejected): Segmentation fault in Enumerator#each
- Under ruby-1.9.2-p290, on OS X Lion, the following code
@e1 = %w(strike strike strike).to_enum
@e2 = [1,2,3].to_enum
p [@e1.next, @e2.next]
p [@e1.next, @e2.next]
p [@e1.next, @e2.next]
Fails with a Segmentation fau...