class GooglePlus::Size

Public Instance Methods

==(other) click to toggle source

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

Calls superclass method
# File lib/google_plus/size.rb, line 11
def ==(other)
  super || (other.class == self.class && other.h == self.h && other.w == self.w)
end