What is the pyyonic Ruby equivalent?

In the Python community, the term pythonic refers to idiomatic Python [1] . Is there an equivalent term in the Ruby community for idiomatic Ruby [2] ?

[1] For example, use enumerate(l)instead range(len(l))is pythonic.

[2] For example, use .eachinstead foris an idiomatic Ruby.

+5
source share
1 answer

I have not heard of such a reduction, presumably because there is no convenient suffix that you can add to Ruby to turn it into an adjective :)

If you say something idiomatic and you are around rubists, I think everyone will know what you mean.

+2
source

All Articles