SyntaxFix
Write A Post
Hire A Developer
Questions
Sounds like you're doing this:
0..10.to_a
The warning is from Fixnum#to_a, not from Range#to_a. Try this instead:
(0..10).to_a