Class: ConverterJSON
- Defined in:
- lib/source/Converter_json.rb
Instance Method Summary collapse
Instance Method Details
#read_file(file_content) ⇒ Object
6 7 8 |
# File 'lib/source/Converter_json.rb', line 6 def read_file(file_content) JSON.parse(file_content, {symbolize_names: true}) end |
#write_file(hash_students) ⇒ Object
10 11 12 |
# File 'lib/source/Converter_json.rb', line 10 def write_file(hash_students) JSON.pretty_generate(hash_students) end |