blob: 9f860308cfc889aa7cc2aeb6278bcf8cc135b6bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
class WayCost
attr_reader :departure, :arrival, :id
attr_accessor :distance, :time
def initialize(
departure:,
arrival:,
distance: nil,
time: nil,
id: nil
)
@departure = departure
@arrival = arrival
@distance = distance
@time = time
@id = id
end
def ==(other)
other.is_a?(self.class) &&
@departure == other.departure &&
@arrival == other.arrival &&
@distance == other.distance &&
@time == other.time &&
@id == other.id
end
end
|