aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/numeric.rb
blob: 5d9b2eea9e17fe4920a3ee89895fce564251adea (plain) (blame)
1
2
3
4
5
class Numeric
  def to_json #:nodoc:
    to_s
  end
end