I am currently trying to convert this ruby array:
[5, 7, 8, 1]
into this:
[[5], [7], [8], [1]]
What's the best way ?
I'm currently doing it like this:
[5, 7, 8, 1].select { |element| element }.collect { |element| element.to_a }
But I'm getting the following error(s):
warning: default `to_a' will be obsolete
What am I doing wrong? Could you please advice on how to do this right?
Thanks in advance and best regards!