1 2 3 4
#This is the error command egrep "smtp" -i ./production.log ...
1 2 3
def toll_free_dealer_phone(phone) phone.gsub(/(^.*)(866|877|888)/, '1-\1\2') ...
Ruby On Add 1- in front of a number
by carlpelletier.myopenid.com,
July 23, 2009 16:49
Thanks all, andyjeffries yo...
1 2 3 4
def toll_free_dealer_phone(phone) formated_phone = phone area_code_supported = %w( 866 877 888) ...
Ruby Add 1- in front of a number
by carlpelletier.myopenid.com,
July 20, 2009 19:11,
-45 refactorings, tagged with rails, toll free number, helper method
I need to build a helper me...
I looking for a quick easy ...