Actions
Bug #2049
closedString#upto: Possible Regression
Description
=begin
Prior to r24562:
a = []
"25".upto("5") { |s| a << s }
a #=> ["25"]
Now:
a = []
"25".upto("5") { |s| a << s }
a #=> []
IOW, previously when the argument was a stringified number that was less than self and the argument was shorter than self, self was yielded to the block. Now the argument's numerical value is all that matters, so in this example nothing is yielded.
Presumably this is intentional because the new behaviour makes more sense than the previous, but as it broke a RubySpec, I'd just like to confirm before I fix the failing example.
=end
Actions
Like0
Like0Like0