756e6d2ad8
* This will significantly decrease the size of the msf install (~5 MB) * ActiveRecord & ActiveSupport are still used, and have been moved to lib/ git-svn-id: file:///home/svn/framework3/trunk@10682 4d416f70-5f16-0410-b530-b9f4589650da
22 lines
267 B
Ruby
22 lines
267 B
Ruby
class Numeric
|
|
def to_json(options = nil) #:nodoc:
|
|
to_s
|
|
end
|
|
|
|
def as_json(options = nil) #:nodoc:
|
|
self
|
|
end
|
|
end
|
|
|
|
class Float
|
|
def to_json(options = nil) #:nodoc:
|
|
to_s
|
|
end
|
|
end
|
|
|
|
class Integer
|
|
def to_json(options = nil) #:nodoc:
|
|
to_s
|
|
end
|
|
end
|