This is just a simple
# File lib/oauth/models/consumers/simple_client.rb, line 18 def delete(path) parse(token.delete(path, {'Accept' => 'application/json'})) end
# File lib/oauth/models/consumers/simple_client.rb, line 26 def get(path) parse(token.get(path, {'Accept' => 'application/json'})) end
# File lib/oauth/models/consumers/simple_client.rb, line 32 def parse(response) return false unless response if ["200","201"].include? response.code unless response.body.blank? JSON.parse(response.body) else true end else logger.debug "Got Response code: #{response.code}" false end end
Generated with the Darkfish Rdoc Generator 2.