dump

dump(obj, anIO = nil, limit = nil)
Instance Public methods

Dumps obj as a JSON string, i.e. calls generate on the object and returns the result.

If anIO (an IO-like object or an object that responds to the write method) was given, the resulting JSON is written to it.

If the number of nested arrays or objects exceeds limit, an ArgumentError exception is raised. This argument is similar (but not exactly the same!) to the limit argument in Marshal.dump.

The default options for the generator can be changed via the ::dump_default_options method.

This method is part of the implementation of the load/dump interface of Marshal and YAML.

doc_ruby_on_rails
2015-04-17 05:55:09
Comments
Leave a Comment

Please login to continue.