Sha256: b450655238a4ec3180469e7843c0830b551754f48bcbbe80be16d25fa0e3bec1
Contents?: true
Size: 525 Bytes
Versions: 17
Compression:
Stored size: 525 Bytes
Contents
# =========================================================================== # Project: Abbot - SproutCore Build Tools # Copyright: ©2009 Apple Inc. # portions copyright @2006-2009 Sprout Systems, Inc. # and contributors # =========================================================================== module SC module Helpers module DomIdHelper @@tick = 0 def dom_id!(type="id") @@tick += 1 return "#{type}_#{(Time.now.to_i + @@tick)}" end end end end
Version data entries
17 entries across 17 versions & 2 rubygems