class Object

Constants

PUBNUB_VERSION

Public Instance Methods

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