d> numeric.rb « encoders « json « active_support « lib « activesupport « rails-2.1.0 « vendor - alaveteli - Unnamed repository; edit this file 'description' to name the repository.
aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/rails-2.1.0/activesupport/lib/active_support/json/encoders/numeric.rb
blob: 38713fb3695a09e41031772a421e96a0151c5f2a (plain)
1
2
3
4
5
class Numeric
  def to_json(options = nil) #:nodoc:
    to_s
  end
end