This method is deprecated or moved on the latest stable version. The last existing version (v3.2.13) is shown here.
from_json(json, save_cache = false)
Grabs errors from a json response.
# File activeresource/lib/active_resource/validations.rb, line 29 def from_json(json, save_cache = false) array = Array.wrap(ActiveSupport::JSON.decode(json)['errors']) rescue [] from_array array, save_cache end