[Source]
# File lib/json/add/core.rb, line 137 137: def self.json_create(object) 138: new(object['s'], object['o']) 139: end
# File lib/json/add/core.rb, line 141 141: def to_json(*) 142: { 143: JSON.create_id => self.class.name, 144: 'o' => options, 145: 's' => source, 146: }.to_json 147: end
[Validate]