Method: Services#put

Defined in:
lib/jirarest2/services.rb

#put(data = "") ⇒ Hash

Send the PUT request

Parameters:

  • data (HASH) (defaults to: "")

    to be sent to Connection.execute

Returns:

  • (Hash)

    The result as constructed by Connection.execute transformed from a json hash



55
56
57
# File 'lib/jirarest2/services.rb', line 55

def put(data = "")
  return @connection.execute("Put",@uritail,data).result
end