Class: PLA::Vessel
- Inherits:
-
Object
- Object
- PLA::Vessel
- Defined in:
- lib/pla/vessel.rb
Instance Method Summary collapse
-
#initialize(name, country, agent) ⇒ Vessel
constructor
A new instance of Vessel.
- #normalise_country(country_code) ⇒ Object
- #to_h ⇒ Object
Constructor Details
permalink #initialize(name, country, agent) ⇒ Vessel
Returns a new instance of Vessel.
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
permalink #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 |
permalink #to_h ⇒ Object
[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 |