# File lib/em-http/http_connection.rb, line 6 def delete options = {}, &blk; setup_request(:delete, options, &blk); end
# File lib/em-http/http_connection.rb, line 4 def get options = {}, &blk; setup_request(:get, options, &blk); end
# File lib/em-http/http_connection.rb, line 5 def head options = {}, &blk; setup_request(:head, options, &blk); end
# File lib/em-http/http_connection.rb, line 10 def options options = {}, &blk; setup_request(:options, options, &blk); end
# File lib/em-http/http_connection.rb, line 9 def patch options = {}, &blk; setup_request(:patch, options, &blk); end
# File lib/em-http/http_connection.rb, line 8 def post options = {}, &blk; setup_request(:post, options, &blk); end
# File lib/em-http/http_connection.rb, line 7 def put options = {}, &blk; setup_request(:put, options, &blk); end