-
Notifications
You must be signed in to change notification settings - Fork 62
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
Use JSON if Available #1
Comments
Out of curiosity, why use YAML in the first place? |
@laserlemon I specifically designed gems to have no dependencies and JSON isn't part of stdlib in Ruby < 1.9. |
Ahh, yeah I thought that might be the case once I looked over the gemspec more carefully. And when I saw that Faraday was nowhere to be found. Cool, I dig it. Is JSON much more performant? |
Yes. It's smaller over the wire and should be faster to parse. |
Is this is still an endeavor worth pursuing? Are people still using this gem? |
This gem gets about 600 downloads per week, so yes, it is still being used. Are you interested in implementing this feature? |
Yes! Anything I should know before starting? I can also take care of #16 at the same time. |
If JSON is available, use it instead of YAML (for perfs).
The text was updated successfully, but these errors were encountered: