class ODisk::Link
Attributes
target[RW]
Public Class Methods
new(name)
click to toggle source
Calls superclass method
ODisk::Info::new
# File lib/odisk/link.rb, line 7 def initialize(name) super(name) @target = nil end
Public Instance Methods
eql?(o)
click to toggle source
Calls superclass method
ODisk::Info#eql?
# File lib/odisk/link.rb, line 12 def eql?(o) super(o) && @target == o.target end
Also aliased as: ==