Flowdock
method

extract_params_from_response

Importance_0
v3.0.0 - Show latest stable - 0 notes - Class: ActiveResource::Connection
extract_params_from_response() private

No documentation

This method has no description. You can help the Ruby on Rails community by adding new notes.

Hide source
# File activeresource/lib/active_resource/connection.rb, line 252
      def extract_params_from_response
        params = {}
        if response_auth_header =~ /^(\w+) (.*)/
          $2.gsub(/(\w+)="(.*?)"/) { params[$1] = $2 }
        end
        params
      end
Register or log in to add new notes.