json_create(object)
Deserializes JSON string by constructing new Regexp object with source s (Regexp or String) and options o serialized by to_json
# File ext/json/lib/json/add/core.rb, line 227 def self.json_create(object) new(object['s'], object['o']) end