vote up 1 vote down star
2

I am stumped with this problem.

ActiveSupport::JSON defines to_json on various core objects and so does the JSON gem. However, the implementation is not the same -- the ActiveSupport version takes arguments and the JSON gem version doesn't.

I installed a gem that required the JSON gem and my app broke. The issue is that I'm using to_json in a controller that returns a list of objects, but I want to control which attributes are returned.

When code anywhere in my system does require 'json' I get this error message:

TypeError: wrong argument type Hash (expected Data)

I tried a couple of things that I read online to fix it, but nothing worked. I ended up re-writing the gem to use ActiveSupport::JSON.decode instead of JSON.parse.

This works but it's not sustainable...I can't be forking gems every time I want to use a gem that requires the JSON gem.

Update: The best solution of this problem is to upgrade to Rails 2.3 or higher, which fixed it.

flag
1  
Why is this question marked as "community wiki"? – Aaron Hinni Mar 26 at 2:04
I don't know, I just figured I'd try that and see what it does. – Luke Francl Mar 26 at 3:51
I have felt your pain, I hope this mess gets sorted some day – MatthewFord Aug 2 at 20:15

3 Answers

vote up 1 vote down

Update This fix is only applicable to Rails < 2.3. As Giles mentions below, they fixed this in 2.3 internally using much the same technique. But beware the json gem's earlier attempt at Rails compatibility (json/add/rails), which, if required explicitly will break everything all over again.

Do you mean the require 'json' statement itself raises that Exception? Or do you mean when you call @something.to_json(:something => value) you get the error? The latter is what I would expect, if you have a problem requiring the JSON gem then I'm not sure what's going on.

I just ran into this problem with the oauth gem. In my case, there is not a true conflict, because the oauth gem doesn't depend on to_json implementation. Therefore the problem is that JSON is clobbering the ActiveSupport declarations. I solved this by simply requiring json before ActiveSupport is loaded. Putting

require 'json'

inside the Rails::Initializer did the trick (though putting it after the block did NOT).

That allows ActiveSupport to clobber the default JSON implementation instead.

Now if you are using a gem that actually depends on the JSON implementation of to_json then you are up a creek. This is definitely the worst of meta-programming, and I would advocate for the Rails and JSON gem developers to resolve the conflict, though it will be painful because one or the other will have to break backwards compatibility.

In the short term, gem authors may be able to bridge the gap by supporting both implementations. This is more or less feasible depending on how the gem uses the method. A worst case scenario is an official fork (ie. gem and gem-rails).

link|flag
Yeah, I mean that when I use something that calls require 'json' it blows away the Rails version of to_json causing me much pain. Thanks for your suggestions. Have you had any luck with the suggested option of using require 'json/add/rails'? I can't get that to work. – Luke Francl Apr 16 at 23:21
require only works the first time you call it, so if you call it before the Rails version is loaded it won't do anything when the plugin requires it. I've verified this in practice, put it in the Rails::Initializer block. No idea bout the json/add/rails thing, but I don't think it's necessary. – dasil003 Apr 16 at 23:35
vote up 0 vote down

I'm pretty sure they fixed this in 2.3 but I can't remember how.

link|flag
Yeah, I think they got rid of calling to_json directly. Instead you define as_json or you call JSON.generate or ActiveSupport::JSON.encode directly. And with the new JSON backend stuff, I think that ActiveSupport::JSON.encode will use your preferred library. – Luke Francl Aug 4 at 20:59
vote up 0 vote down

I've yet to try it, but it looks like Rails 2.3.3 gives you some control:

ActiveSupport::JSON.backend = 'JSONGem'

Found here: http://weblog.rubyonrails.org/2009/7/20/rails-2-3-3-touching-faster-json-bug-fixes

link|flag
Yeah, Rails 2.3+ fixes this problem. – Luke Francl Jan 20 at 18:12

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.