Pastie now auto-senses if line-wrap is a bad or good idea. Feedback?
## mark a section (Learn more)
This paste will be private.
class EmptyDataBreaker def run(*args) yield(*args) || false end end breaker = EmptyDataBreaker.new result = breaker.run { ... } result2 = breaker.run { ... } return result2
From the Design Piracy series on my blog: