class Object
Public Instance Methods
not_blank?()
click to toggle source
# File lib/not_helpers.rb, line 8 def not_blank? !blank? end
not_empty?()
click to toggle source
# File lib/not_helpers.rb, line 12 def not_empty? !empty? end
not_nil?()
click to toggle source
# File lib/not_helpers.rb, line 4 def not_nil? !nil? end
not_present?()
click to toggle source
# File lib/not_helpers.rb, line 16 def not_present? !present? end