Sha256: 3542fd1a734d873cdd8dc2a3beed5c34219ef22e675d3a921e36fd1fb51d8b4b
Contents?: true
Size: 263 Bytes
Versions: 10
Compression:
Stored size: 263 Bytes
Contents
class Time # Tracks the elapse time of a code block. # # e = Time.elapse { sleep 1 } # # e.assert > 1 # # CREDIT: Hal Fulton def self.elapse raise "Need block" unless block_given? t0 = now.to_f yield now.to_f - t0 end end
Version data entries
10 entries across 9 versions & 2 rubygems