giddie (Paul Dann)
- Login: giddie
- Email: pdgiddie+rubylang@gmail.com
- Registered on: 03/26/2012
- Last sign in: 04/18/2012
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
03/26/2012
-
08:43 PM Ruby Bug #6205 (Closed): YAML Regexp in anchor gets converted to String
- I'll try to illustrate with code:
YAML:
---
hello: &allow-float
!ruby/regexp '/hello/'
bla: *allow-float
RUBY:
require 'yaml'
config = YAML.load_file('config.yaml')
puts config.inspect
puts config['hell...