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.
source
share