# File lib/oauth/request_proxy/curb_request.rb, line 18 18: def method 19: nil 20: end
# File lib/oauth/request_proxy/curb_request.rb, line 41 41: def post_parameters 42: post_body = {} 43: 44: # Post params are only used if posting form data 45: if (request.headers['Content-Type'] && request.headers['Content-Type'].downcase == 'application/x-www-form-urlencoded') 46: 47: request.post_body.split("&").each do |str| 48: param = str.split("=") 49: post_body[param[0]] = param[1] 50: end 51: end 52: post_body 53: end
Disabled; run with --debug to generate this.
Generated with the Darkfish Rdoc Generator 1.1.6.