Class: PandaPal::Session::DataSerializer
- Inherits:
-
Object
- Object
- PandaPal::Session::DataSerializer
- Defined in:
- app/models/panda_pal/session.rb
Class Method Summary collapse
Class Method Details
permalink .dump(obj) ⇒ Object
[View source]
203 204 205 |
# File 'app/models/panda_pal/session.rb', line 203 def self.dump(obj) JSON.dump(obj) end |
permalink .load(str) ⇒ Object
[View source]
193 194 195 196 197 198 199 200 201 |
# File 'app/models/panda_pal/session.rb', line 193 def self.load(str) return {}.with_indifferent_access unless str.present? begin parsed = JSON.parse(str) rescue JSON::ParserError parsed = yaml_load(str) end parsed.is_a?(Hash) ? HashWithIndifferentAccess.new(parsed) : parsed end |