Class: Float

Inherits:
Object show all
Includes:
ActiveSupport::NumericWithFormat
Defined in:
lib/active_support/core_ext/object/json.rb

Instance Method Summary collapse

Methods included from ActiveSupport::NumericWithFormat

#to_s

Instance Method Details

#as_json(options = nil) ⇒ Object

Encoding Infinity or NaN to JSON should return “null”. The default returns “Infinity” or “NaN” which are not valid JSON.



104
105
106
# File 'lib/active_support/core_ext/object/json.rb', line 104

def as_json(options = nil) #:nodoc:
  finite? ? self : nil
end