Sha256: 26d2aaf7c004a36db5a284c06e44cc458f8d89eaf858dfbde29051f76921a5ec
Contents?: true
Size: 740 Bytes
Versions: 1
Compression:
Stored size: 740 Bytes
Contents
# HoboSupport - Methodphitamine >> require 'hobosupport' >> HoboSupport::VERSION => "0.1" ## `Kernel#it` and `Kernel#its` A nice hack from Jay Phillips, christened "Methodphitamine". The low-down is in the [original blog post][1]. [1]: http://jicksta.com/articles/2007/08/04/the-methodphitamine >> (1..10).select &it % 2 == 0 => [2, 4, 6, 8, 10] >> %w(a few short words).map &its.length => [1, 3, 5, 5] Note that `it` and `its` are identical. They just read better in different contexts. Note that methodphitamine is also released directly by Jay (simply `gem install methodphitamine`) but it's small enough that it seemed easier to add it to HoboSupport and avoid an extra dependency. Thanks to Jay.
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
hobosupport-0.7.5 | test/hobosupport/methodphitamine.rdoctest |