You do not have access to this ticket

This project is archived and is in readonly mode.

#4547 ✓invalid
siplux

ActiveSupport #to_json doesn't work with DM

Reported by siplux | May 6th, 2010 @ 10:55 PM

object#to_json will fail with "ActiveSupport::JSON::Encoding::CircularReferenceError: object references itself"
This is due to the usage of "instance_values" in the #as_json method. DM objects carry a _@repository ivar which carries a reference to the original object.

This can be fixed by adding "dm-serializer" to the Gemfile, which implements its own #to_json method.

on line 137 of activesupport/lib/active_support/json/encoding

  def as_json(options = nil)

if respond_to?(:to_hash)
  to_hash
else
  instance_values
end


end

The following will reproduce the issue

require 'dm-core'
require 'active_support'
require 'active_support/json'
class Foo
  include DataMapper::Resource
  property :id, Serial
  property :name, String
end
DataMapper.setup(:default, 'sqlite3::memory:')
DataMapper.auto_migrate!
Foo.create(:name => "foo").to_json

Comments and changes to this ticket

Create your profile

Help contribute to this project by taking a few moments to create your personal profile. Create your profile »

<h2 style="font-size: 14px">Tickets have moved to Github</h2>

The new ticket tracker is available at <a href="https://github.com/rails/rails/issues">https://github.com/rails/rails/issues</a>