silasdavis (Silas Davis)
- Login: silasdavis
- Email: ruby-lang@silasdavis.net
- Registered on: 06/19/2013
- Last sign in: 06/27/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 1 | 0 | 1 |
Activity
06/19/2013
-
11:35 PM Ruby Feature #8544 (Open): OpenURI should open 'file://' URIs
- The following code prints the contents of '/tmp/file.txt':
require 'open-uri'
open('/tmp/file.txt').read {|f| puts f.read }
which although useful should probably fail since a unix file path is not a URI, and therefore might shield...