Sha256: d31b356f824501041a38262f34939451ffdc36f800a1153a1049bec23e470111

Contents?: true

Size: 663 Bytes

Versions: 48

Compression:

Stored size: 663 Bytes

Contents

module ActiveSupport
  module NumberHelper
    class NumberToDelimitedConverter < NumberConverter #:nodoc:
      self.validate_float = true

      DEFAULT_DELIMITER_REGEX = /(\d)(?=(\d\d\d)+(?!\d))/

      def convert
        parts.join(options[:separator])
      end

      private

        def parts
          left, right = number.to_s.split('.'.freeze)
          left.gsub!(delimiter_pattern) do |digit_to_delimit|
            "#{digit_to_delimit}#{options[:delimiter]}"
          end
          [left, right].compact
        end

        def delimiter_pattern
          options.fetch(:delimiter_pattern, DEFAULT_DELIMITER_REGEX)
        end

    end
  end
end

Version data entries

48 entries across 46 versions & 8 rubygems

Version Path
files.com-1.0.55 docs/vendor/bundle/ruby/2.5.0/gems/activesupport-5.0.7.1/lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.7.2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.7.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.7 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.6 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.6.rc1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.5 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.5.rc2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.5.rc1 lib/active_support/number_helper/number_to_delimited_converter.rb
tdiary-5.0.5 vendor/bundle/gems/tdiary-5.0.4/vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
tdiary-5.0.5 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.4 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.4.rc1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.3 lib/active_support/number_helper/number_to_delimited_converter.rb
enju_leaf-1.2.1 vendor/bundle/ruby/2.3/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.2.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.2.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.9 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.8 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.7 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb