Method: Olib::App.write_json
- Defined in:
- lib/Olib/storage/app_data.rb
.write_json(file, data) ⇒ Object
20 21 22 23 24 |
# File 'lib/Olib/storage/app_data.rb', line 20 def self.write_json(file, data) open(file) do |f| JSON.dump(data) end end |