-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove reliance on MultiJson #1
Comments
👍 and about multi_json: intridea/multi_json#113 (comment) |
Innnnnnnteresting. Didn't know about the performance problems with MultiJson, it always seemed like a light-enough wrapper that it shouldn't have mattered. I'll make adjustments ❤️ |
Fixes #1. For context, see #1 and intridea/multi_json#113 (comment).
👍 |
@guilleiguaran @foca performance problems of MultiJson have been removed long ago: https://gist.github.com/luislavena/17d36542f5dbca83311f Ruby 2.1.5 and latest version of all gems. |
In the past I've had gem conflicts because of MultiJson, and, in my opinion, it's not worth to have a dependency on something that is merely a strategy definition.
So instead of depending on it and calling
MultiJson.dump
(or whatever its API is), you could use something like:What do you think?
The text was updated successfully, but these errors were encountered: