require 'net/http' connection = Net::HTTP.new('localhost', '3000') # connection.send_request(verb, path, body, headers) connection.send_request('GET', '/', nil) connection.send_request('POST', '/', "some data", {})