Class: String
Overview
class FalseClass
Instance Method Summary collapse
-
#blank? ⇒ Boolean
Strips out whitespace then tests if the string is empty.
Instance Method Details
#blank? ⇒ Boolean
Strips out whitespace then tests if the string is empty.
39 40 41 |
# File 'lib/couchrest/support/blank.rb', line 39 def blank? strip.empty? end |