class Object

Public Instance Methods

blank?() click to toggle source
# File lib/tmdb.rb, line 68
def blank?
  respond_to?(:empty?) ? !!empty? : !self
end
present?() click to toggle source
# File lib/tmdb.rb, line 72
def present?
  !blank?
end