We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
If there a way to make this (or another) gem print objects on a form that:
foo =
Time.now
{...}.to_json
"https://domain/path/?#{URI.encode_www_form({a: 1, b: 2, ...})"
one = [ false, 42, %w[forty two], { now: Time.now, class: Time, distance: 4.2e+43 } ] ap(one) [ false, 42, %w[forty two], { now: Time.now, class: Time, distance: 4.2e+43 } ]
For me personally it doesn't need support for classes, methods, etc. as I assume that's the 80% of the Pareto principle.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If there a way to make this (or another) gem print objects on a form that:
foo =
and run as code)Time.now
{...}.to_json
"https://domain/path/?#{URI.encode_www_form({a: 1, b: 2, ...})"
For me personally it doesn't need support for classes, methods, etc. as I assume that's the 80% of the Pareto principle.
The text was updated successfully, but these errors were encountered: