Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
class Logging attr_accessor :disable_time def initialize(d_time=false) disable_time = d_time end def puts(str) Kernel::puts("#{now}#{str}") end def now @disable_time ? '' : Time.now.strftime(' %Y-%m-%d %H:%m:%S ') end end
This paste will be private.
From the Design Piracy series on my blog: