Sha256: 11ad1e9798fb9d6af3077897511e723ab220c6f3a92879fb7b80065d7727acba

Contents?: true

Size: 743 Bytes

Versions: 91

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

91 entries across 87 versions & 13 rubygems

Version Path
omg-activesupport-8.0.0.alpha8 lib/active_support/number_helper/number_to_delimited_converter.rb
omg-activesupport-8.0.0.alpha7 lib/active_support/number_helper/number_to_delimited_converter.rb
omg-activesupport-8.0.0.alpha4 lib/active_support/number_helper/number_to_delimited_converter.rb
omg-activesupport-8.0.0.alpha3 lib/active_support/number_helper/number_to_delimited_converter.rb
omg-activesupport-8.0.0.alpha2 lib/active_support/number_helper/number_to_delimited_converter.rb
omg-activesupport-8.0.0.alpha1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.1.4 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.0 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.0.rc1 lib/active_support/number_helper/number_to_delimited_converter.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.0.8.4/lib/active_support/number_helper/number_to_delimited_converter.rb
blacklight-spotlight-3.6.0.beta8 vendor/bundle/ruby/3.2.0/gems/activesupport-7.1.3.4/lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.0.beta3 lib/active_support/number_helper/number_to_delimited_converter.rb
cm-admin-1.5.22 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/number_helper/number_to_delimited_converter.rb
cm-admin-1.5.21 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/number_helper/number_to_delimited_converter.rb
cm-admin-1.5.20 vendor/bundle/ruby/3.3.0/gems/activesupport-7.0.5.1/lib/active_support/number_helper/number_to_delimited_converter.rb
katalyst-govuk-formbuilder-1.9.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/number_helper/number_to_delimited_converter.rb
tinymce-rails-7.1.2 vendor/bundle/ruby/3.3.0/gems/activesupport-7.1.3.4/lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.2.0.beta2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-7.1.3.4 lib/active_support/number_helper/number_to_delimited_converter.rb