Sha256: 88b5e9755e144bbecf1f88622731749800ab13dadae29daa4115e46fb3e9baa9

Contents?: true

Size: 531 Bytes

Versions: 11

Compression:

Stored size: 531 Bytes

Contents

class ThinkingSphinx::FloatFormatter
  PATTERN = /(\d+)e\-(\d+)$/

  def initialize(float)
    @float = float
  end

  def fixed
    return float.to_s unless exponent_present?

    ("%0.#{decimal_places}f" % float).gsub(/0+$/, '')
  end

  private

  attr_reader :float

  def exponent_decimal_places
    float.to_s[PATTERN, 1].length
  end

  def exponent_factor
    float.to_s[PATTERN, 2].to_i
  end

  def exponent_present?
    float.to_s['e']
  end

  def decimal_places
    exponent_factor + exponent_decimal_places
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
thinking-sphinx-3.4.2 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.4.1 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.4.0 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.3.0 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.2.0 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.1.4 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.1.3 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.1.2 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.1.1 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.1.0 lib/thinking_sphinx/float_formatter.rb
thinking-sphinx-3.0.6 lib/thinking_sphinx/float_formatter.rb