Skip to content
albertovilla edited this page Jan 10, 2012 · 11 revisions

Goal

Creating a Ruby application to apply to Parse through sending a POST to: https://www.parse.com/jobs/apply with the Content-Type set to application/json, and the body as valid JSON with the following keys:

name: String with your name (required)

email: String with your email address (required)

about: String describing why you think Parse is a great fit for you (required)

urls: Array of strings with relevant links to your resume, website, or your code samples (required)

Libraries

JSON

Use the JSON gem: https://github.com/flori/json#readme to convert the Ruby object to JSON format

TODO

1. Format Applicant in JSON format > done
2. Implement http POST > done
3. Testing using webhookapp.com
4. Polish application and define tests

Clone this wiki locally