blob: 75d3bfe625bfcbb4ffca439f2484459c68dfd79d (
plain) (
tree)
|
|
module ActiveRecord
module Coders # :nodoc:
class JSON # :nodoc:
def self.dump(obj)
ActiveSupport::JSON.encode(obj)
end
def self.load(json)
ActiveSupport::JSON.decode(json) unless json.nil?
end
end
end
end
|