Open ashes999 opened 10 years ago
The problem seems to be that .lines
returns an Enumerator
, and tryruby doesn't want to print the string version of (any) enumerators. (maybe they are getting detected as errors). If you do poem.lines.to_a
, as suggested, you get the lines. You can do poem.lines.to_s to see what it should be printing.
So I think the fix is to print enumerators normally, instead of giving:
=> Something's gone wrong- that might not have been valid ruby
In section two, I see:
poem.lines
gives me an error. This is odd, because the rdoc for 1.9.3 showslines
as a valid method.This seems very odd.