class Croudia::Source

Attributes

name[R]
to_s[R]
url[R]

Public Instance Methods

==(other) click to toggle source
Calls superclass method
# File lib/croudia/source.rb, line 12
def ==(other)
  super || (other.is_a?(Croudia::Source) &&
    name == other.name && url == other.url)
end