Class: ActiveSupport::NumberHelper::NumberToPhoneConverter

Inherits:
NumberConverter show all
Defined in:
lib/active_support/number_helper/number_to_phone_converter.rb

Overview

:nodoc:

Constant Summary

Constants inherited from NumberConverter

ActiveSupport::NumberHelper::NumberConverter::DEFAULTS

Instance Attribute Summary

Attributes inherited from NumberConverter

#number, #opts

Instance Method Summary collapse

Methods inherited from NumberConverter

convert, #execute, #initialize

Constructor Details

This class inherits a constructor from ActiveSupport::NumberHelper::NumberConverter

Instance Method Details

#convertObject



4
5
6
7
8
# File 'lib/active_support/number_helper/number_to_phone_converter.rb', line 4

def convert
  str  = country_code(opts[:country_code])
  str << convert_to_phone_number(number.to_s.strip)
  str << phone_ext(opts[:extension])
end