I am using an ActiveResource model named "Setting" to connect to an external web service which delivers some response like the following example:
{"setting" => {"id" => 10, :details => {"10a" => 7, "10b" => 8}}}
The problem is, that ActiveResource tries to symbolize all keys in the details
hash but this is not possible and raises a NameError: wrong constant name 10a
. Is there any chance to prohibit the symbolication or even to avoid the transformation of details
to a separate object?
Thanks