Class: Object
- Inherits:
- BasicObject
- Defined in:
- lib/support/patches.rb
Overview
simplest monkey patch, honest ;)
Instance Method Summary collapse
Instance Method Details
#blank? ⇒ Boolean
7 8 9 |
# File 'lib/support/patches.rb', line 7 def blank? respond_to?(:empty?) ? empty? : !self end |