1
0
Fork 0
mirror of https://github.com/rest-client/rest-client.git synced 2022-11-09 13:49:40 -05:00

Adding a missing comma which restores a reader method and silences a warning.

This commit is contained in:
James Edward Gray II 2009-04-06 18:48:03 -05:00
parent 3fb5c51d1e
commit d24758aaf5

View file

@ -10,7 +10,7 @@ module RestClient
class Request
attr_reader :method, :url, :payload, :headers,
:cookies, :user, :password, :timeout, :open_timeout,
:verify_ssl, :ssl_client_cert, :ssl_client_key, :ssl_ca_file
:verify_ssl, :ssl_client_cert, :ssl_client_key, :ssl_ca_file,
:raw_response
def self.execute(args)