Class: HappyPhoneNumber::IsFormat

Inherits:
BaseFormat show all
Defined in:
lib/happy_phone_number/is_format.rb

Overview

Format phone numbers from Iceland.

Instance Method Summary collapse

Methods inherited from BaseFormat

#initialize

Constructor Details

This class inherits a constructor from HappyPhoneNumber::BaseFormat

Instance Method Details

#formatObject

Format the phone number given convention for Iceland.

Returns the String formatted phone number.



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

def format
  if @type == :national
    make_happy '34'
  else
    internationalize_with '354'
    make_happy '434'
  end
end