aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib/active_support/json/encoders/numeric.rb
blob: 42de2f4ea7743e334a52cfb766cdf2faf62ce19b (plain) (blame)
1
2
3
4
5
6
class Numeric
  private
    def rails_to_json(options = nil)
      to_s
    end
end