Method: RustyJson.parse
- Defined in:
- lib/rusty_json.rb
permalink .parse(json, name = 'JSON') ⇒ Object
Example Usage:
json = File.read(‘json_file.json’) rust = RustyJson.parse(json) File.write(‘output_structs.rs’, rust)
In the above example, RustyJson will parse the JSON in the file: json_file.json and then you print the rust structs out to a Rust File.
25 26 27 28 |
# File 'lib/rusty_json.rb', line 25 def self.parse(json, name = 'JSON') parser = Parser.new(name, json) parser.parse end |