Sha256: 6bfd843db9a91757b97ffddea18206cb357cdafcee6adf60bdbcdde700ff7598

Contents?: true

Size: 457 Bytes

Versions: 5

Compression:

Stored size: 457 Bytes

Contents

Collection of utilities to make ruby more user friendly.

Currently:

require_rel glob
  * require a file relative to the current, i.e.
   require_rel 'lib/filename'

Object#in?
 3.in? [1,2,3]
 => true
  
println
 like print, but with a carriage return at the end:
 println 1,2,3
 (prints 123\n)

enumerable-extra
  #new enumerable #map
  [1,2,3].map(:to_s) # applies it automatically! far less ugly than [1,2,3].map &:to_s

Don't leave home without these!

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rogerdpack-sane-0.0.1 README
rogerdpack-sane-0.0.2 README
rogerdpack-sane-0.0.4 README
rogerdpack-sane-0.0.7 README
rogerdpack-sane-0.0.8 README