This is the minimal reproduction I could come up with: ~~~ruby require "forwardable" require "singleton" class Surprise include Singleton class << self extend Forwardable def method_added(method) (class...JEG2 (James Gray)
Applied in changeset r45374. ---------- * lib/csv.rb: Fixed a broken regular expression that was causing CSV to miss escaping some special meaning characters when used in parsing. Reported by David Unric [ruby-core:54986] [Bug #...JEG2 (James Gray)
Yeah, I also looked at making this change, but the behavior of returning just the first line is documented: https://github.com/ruby/ruby/blob/trunk/lib/csv.rb#L672 I'm not sure if users of this library count on that or not. This c...JEG2 (James Gray)
This issue was solved with changeset r38265. Stephen, thank you for reporting this issue. Your contribution to Ruby is greatly appreciated. May Ruby be with you. ---------- * lib/csv.rb: A fix for row comparison by Stephen Wattam. [Bu...JEG2 (James Gray)
The converters do work, just not on the date format you gave them. Your format is ambiguous. Should we treat it as month-day-year as it would be in the U.S. or day-month-year as it would be in the U.K.? Because we can't know, we don...JEG2 (James Gray)