Sha256: 70be61e86dc9d299e9d7f03fb0d98210e2b3ef5e870fa85ed98798b45edf409f
Contents?: true
Size: 798 Bytes
Versions: 17
Compression:
Stored size: 798 Bytes
Contents
require "json" module AllscriptsUnityClient class JSONUnityResponse < UnityResponse def to_hash result = @response # All JSON magic responses are an array with one item result = result.first # All JSON magic results contain one key on their object named # actioninfo result = result.values.first # The data in a JSON magic result is always an array. If that array # only has a single item, then just return that as the result. This is # a compromise as some actions that should always return arrays # (i.e. GetProviders) may return a single hash. if result.count == 1 result = result.first end result = convert_dates_to_utc(result) Utilities::recursively_symbolize_keys(result) end end end
Version data entries
17 entries across 17 versions & 1 rubygems