class DRbQS::Task::TaskSet::Container

Public Instance Methods

==(other) click to toggle source
# File lib/drbqs/task/task.rb, line 112
def ==(other)
  other.data.each_with_index.all? do |ary, i|
    ary == @data[i]
  end
end

Protected Instance Methods

data() click to toggle source
# File lib/drbqs/task/task.rb, line 107
def data
  @data
end