Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ruby uses Hash, not Object, like JavaScript #124

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ in the final argument to the method.

For example, to get information about the `web` formation on the `sushi` app
you'd invoke `heroku.formation.info('sushi', 'web')` and it would return a
Ruby object that matches the one given in the [response example](https://devcenter.heroku.com/articles/platform-api-reference#formation-info).
Ruby Hash that matches the one given in the [response example](https://devcenter.heroku.com/articles/platform-api-reference#formation-info).

The [API documentation](http://heroku.github.io/platform-api/_index.html) contains a
description of all available resources and methods.
Expand Down Expand Up @@ -188,7 +188,7 @@ heroku.config_var.update('floating-retreat-4255', {'MYAPP' => 'ROCKS'})
```

As you can see, any action that needs a request body takes it as a plain Ruby
object, as the final parameter of the method call.
Hash, as the final parameter of the method call.

Using the same principle you can even pass in a specific version of PostgreSQL
at the time of creation:
Expand Down