Class: CycleHire::JourneyParser

Inherits:
Object
  • Object
show all
Defined in:
lib/cycle_hire/journey_parser.rb

Instance Method Summary collapse

Constructor Details

#initialize(data) ⇒ JourneyParser

Returns a new instance of JourneyParser.



6
7
8
# File 'lib/cycle_hire/journey_parser.rb', line 6

def initialize(data)
  @data = data
end

Instance Method Details

#parseObject



10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/cycle_hire/journey_parser.rb', line 10

def parse
  rows = rows_from_data(@data)
  rows.collect do |row|
    columns = column_data_for_row(row)

    # ignore the header and other column types
    if columns[4] == 'Hire'
      start_time = parse_time(columns[0])
      end_time = parse_time(columns[1])
      cost = parse_cost(columns[5])
      CycleHire::Journey.new(start_time, columns[2], end_time, columns[3], cost)
    else
      nil
    end
  end.compact
end