Class: PLA::Vessel

Inherits:
Object
  • Object
show all
Defined in:
lib/pla/vessel.rb

Instance Method Summary collapse

Constructor Details

#initialize(name, country, agent) ⇒ Vessel

Returns a new instance of Vessel.

[View source]

5
6
7
8
9
# File 'lib/pla/vessel.rb', line 5

def initialize name, country, agent
  @name = name
  @country = normalise_country(country)
  @agent = agent
end

Instance Method Details

#normalise_country(country_code) ⇒ Object

[View source]

20
21
22
23
24
25
26
27
28
29
# File 'lib/pla/vessel.rb', line 20

def normalise_country country_code
  begin
    country = IsoCountryCodes.find(country_code).name
  rescue IsoCountryCodes::UnknownCodeError
    STDERR.puts "WARNING: Invalid country code #{country_code.upcase}"
    country = country_code
  end

  country
end

#to_hObject

[View source]

11
12
13
14
15
16
17
18
# File 'lib/pla/vessel.rb', line 11

def to_h
  {
    name: @name,
    country: @country,
    agent: @agent,
    google: "https://www.google.co.uk/search?q=site:vesselfinder.com #{@name}"
  }
end