class GooglePlus::User

Public Instance Methods

==(other) click to toggle source

@param other [GooglePlus::User] @return [Boolean]

Calls superclass method
# File lib/google_plus/user.rb, line 54
def ==(other)
  super || (other.class == self.class && other.id == self.id)
end
status() click to toggle source

@return [GooglePlus::Status]

# File lib/google_plus/user.rb, line 59
def status
  @status ||= GooglePlus::Status.new(@attrs['status'].merge('user' => self.to_hash.delete_if{|key, value| key == 'status'})) unless @attrs['status'].nil?
end