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/regexp.rb, line 11 def self.json_create(object) new(object['s'], object['o']) end