Sha256: 11ad1e9798fb9d6af3077897511e723ab220c6f3a92879fb7b80065d7727acba

Contents?: true

Size: 743 Bytes

Versions: 90

Compression:

Stored size: 743 Bytes

Contents

# frozen_string_literal: true

require "active_support/number_helper/number_converter"

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(".")
          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

90 entries across 86 versions & 12 rubygems

Version Path
minato_ruby_api_client-0.2.2 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-8.0.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-8.0.0.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.2.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.1.5.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.0.8.7 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-8.0.0 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.1.5 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-8.0.0.rc2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.1.2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.1.4.2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.0.8.6 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-8.0.0.rc1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.1.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.1.4.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.0.8.5 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-8.0.0.beta1 lib/active_support/number_helper/number_to_delimited_converter.rb
omg-activesupport-8.0.0.alpha9 lib/active_support/number_helper/number_to_delimited_converter.rb
omg-activesupport-8.0.0.alpha8 lib/active_support/number_helper/number_to_delimited_converter.rb