parse-ruby-client now supports Parse Cloud Code
parse-ruby-client now makes it really easy to call Parse Cloud Code functions from a Ruby environment. Example:
function = Parse::Cloud::Function.new("hello")
params = {"foo" => "bar"}
function.call(params)

Comments