diff options
| -rwxr-xr-x | activesupport/bin/generate_tables | 6 | ||||
| -rw-r--r-- | activesupport/lib/active_support/multibyte/chars.rb | 3 | ||||
| -rw-r--r-- | activesupport/lib/active_support/multibyte/unicode.rb | 7 | 
3 files changed, 8 insertions, 8 deletions
| diff --git a/activesupport/bin/generate_tables b/activesupport/bin/generate_tables index 5fefa429df..f39e89b7d0 100755 --- a/activesupport/bin/generate_tables +++ b/activesupport/bin/generate_tables @@ -28,12 +28,6 @@ module ActiveSupport          def initialize            @ucd = Unicode::UnicodeDatabase.new - -          default = Codepoint.new -          default.combining_class = 0 -          default.uppercase_mapping = 0 -          default.lowercase_mapping = 0 -          @ucd.codepoints = Hash.new(default)          end          def parse_codepoints(line) diff --git a/activesupport/lib/active_support/multibyte/chars.rb b/activesupport/lib/active_support/multibyte/chars.rb index a42e7f6542..3c0cf9f137 100644 --- a/activesupport/lib/active_support/multibyte/chars.rb +++ b/activesupport/lib/active_support/multibyte/chars.rb @@ -56,11 +56,10 @@ module ActiveSupport #:nodoc:        # Forward all undefined methods to the wrapped string.        def method_missing(method, *args, &block) +        result = @wrapped_string.__send__(method, *args, &block)          if method.to_s =~ /!$/ -          result = @wrapped_string.__send__(method, *args, &block)            self if result          else -          result = @wrapped_string.__send__(method, *args, &block)            result.kind_of?(String) ? chars(result) : result          end        end diff --git a/activesupport/lib/active_support/multibyte/unicode.rb b/activesupport/lib/active_support/multibyte/unicode.rb index 04e6b71580..1845c6ae38 100644 --- a/activesupport/lib/active_support/multibyte/unicode.rb +++ b/activesupport/lib/active_support/multibyte/unicode.rb @@ -287,6 +287,13 @@ module ActiveSupport        class Codepoint          attr_accessor :code, :combining_class, :decomp_type, :decomp_mapping, :uppercase_mapping, :lowercase_mapping +        # Initializing Codepoint object with default values +        def initialize +          @combining_class = 0 +          @uppercase_mapping = 0 +          @lowercase_mapping = 0 +        end +          def swapcase_mapping            uppercase_mapping > 0 ? uppercase_mapping : lowercase_mapping          end | 
