aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb
diff options
context:
space:
mode:
authorPat Allan <pat@freelancing-gods.com>2017-06-19 19:03:10 +1000
committerPat Allan <pat@freelancing-gods.com>2017-06-20 18:04:44 +1000
commit036bdee4d5bdad3b3fa1d57ca292214afe746a09 (patch)
tree8eabc5fa599dce65e6266f7056fa8ff3252285a9 /activesupport/lib/active_support/number_helper/number_to_phone_converter.rb
parentb37aa68ff637c4ce1cfd9f6eaec659bc98a1e1b5 (diff)
downloadrails-036bdee4d5bdad3b3fa1d57ca292214afe746a09.tar.gz
rails-036bdee4d5bdad3b3fa1d57ca292214afe746a09.tar.bz2
rails-036bdee4d5bdad3b3fa1d57ca292214afe746a09.zip
Make ActiveSupport frozen string literal friendly.
The ActiveSupport test suite only passes currently if it uses the latest unreleased commits for dalli, and a patch for Builder: https://github.com/tenderlove/builder/pull/6 Beyond that, all external dependencies (at least, to the extent they’re used by ActiveSupport) are happy, including Nokogiri as of 1.8.0.
Diffstat (limited to 'activesupport/lib/active_support/number_helper/number_to_phone_converter.rb')
-rw-r--r--activesupport/lib/active_support/number_helper/number_to_phone_converter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb b/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb
index 1de9f50f34..3546ee5c2a 100644
--- a/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb
+++ b/activesupport/lib/active_support/number_helper/number_to_phone_converter.rb
@@ -2,7 +2,7 @@ module ActiveSupport
module NumberHelper
class NumberToPhoneConverter < NumberConverter #:nodoc:
def convert
- str = country_code(opts[:country_code])
+ str = country_code(opts[:country_code]).dup
str << convert_to_phone_number(number.to_s.strip)
str << phone_ext(opts[:extension])
end