Class: TrueClass
Instance Method Summary collapse
-
#blank? ⇒ false
private
true
is not blank:. - #present? ⇒ true private
Instance Method Details
#blank? ⇒ false
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
true
is not blank:
true.blank? # => false
85 |
# File 'extend/blank.rb', line 85 def blank? = false |
#present? ⇒ true
This method is part of a private API. This method may only be used in the Homebrew/brew repository. Third parties should avoid using this method if possible, as it may be removed or changed without warning.
88 |
# File 'extend/blank.rb', line 88 def present? = true # :nodoc: |