aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/multibyte/chars.rb
diff options
context:
space:
mode:
authorNorman Clarke <norman@njclarke.com>2012-01-05 16:43:28 -0300
committerNorman Clarke <norman@njclarke.com>2012-01-05 16:43:28 -0300
commit9ea34ad3875243b9dd57a7fbd9ff6fa9c55872ac (patch)
tree0675abe2ad94c556a566cc89204462e48ea2cb04 /activesupport/lib/active_support/multibyte/chars.rb
parentc973161c388dbf4e175c59fd8939b794c5f662cb (diff)
downloadrails-9ea34ad3875243b9dd57a7fbd9ff6fa9c55872ac.tar.gz
rails-9ea34ad3875243b9dd57a7fbd9ff6fa9c55872ac.tar.bz2
rails-9ea34ad3875243b9dd57a7fbd9ff6fa9c55872ac.zip
Remove "_codepoints" from compose/decompose
Diffstat (limited to 'activesupport/lib/active_support/multibyte/chars.rb')
-rw-r--r--activesupport/lib/active_support/multibyte/chars.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb
index fc0650dbbe..1389cb50c9 100644
--- a/activesupport/lib/active_support/multibyte/chars.rb
+++ b/activesupport/lib/active_support/multibyte/chars.rb
@@ -153,7 +153,7 @@ module ActiveSupport #:nodoc:
# 'é'.length # => 2
# 'é'.mb_chars.decompose.to_s.length # => 3
def decompose
- chars(Unicode.decompose_codepoints(:canonical, Unicode.u_unpack(@wrapped_string)).pack('U*'))
+ chars(Unicode.decompose(:canonical, Unicode.u_unpack(@wrapped_string)).pack('U*'))
end
# Performs composition on all the characters.
@@ -162,7 +162,7 @@ module ActiveSupport #:nodoc:
# 'é'.length # => 3
# 'é'.mb_chars.compose.to_s.length # => 2
def compose
- chars(Unicode.compose_codepoints(Unicode.u_unpack(@wrapped_string)).pack('U*'))
+ chars(Unicode.compose(Unicode.u_unpack(@wrapped_string)).pack('U*'))
end
# Returns the number of grapheme clusters in the string.