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
lazy_record-0.1.6 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.4 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
tdiary-5.0.4 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.3 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.2 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.1 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
lazy_record-0.1.0 vendor/bundle/gems/activesupport-5.0.2/lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.2 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.2.rc1 lib/active_support/number_helper/number_to_delimited_converter.rb
autocompl-0.2.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
autocompl-0.2.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
autocompl-0.2.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
autocompl-0.1.2 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
autocompl-0.1.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
autocompl-0.1.0 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
autocompl-0.0.1 test/dummy/vendor/bundle/ruby/2.3.0/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
abaci-0.3.0 vendor/bundle/gems/activesupport-5.0.0/lib/active_support/number_helper/number_to_delimited_converter.rb
abaci-0.3.0 vendor/bundle/gems/activesupport-5.0.1/lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.1 lib/active_support/number_helper/number_to_delimited_converter.rb
activesupport-5.0.1.rc2 lib/active_support/number_helper/number_to_delimited_converter.rb