CONTRIBUTING.md in slack-ruby-client-0.17.0 vs CONTRIBUTING.md in slack-ruby-client-1.0.0
- old
+ new
@@ -27,13 +27,13 @@
### Run Examples in Development
Sign up for Slack, create a private slack group for yourself.
-Create a new Bot Integration under [services/new/bot](http://slack.com/services/new/bot).
+Create a new App under [https://api.slack.com/apps](https://api.slack.com/apps).
-![](screenshots/register-bot.png)
+![](screenshots/create-app.png)
On the next screen, note the API token.
To run [the example in examples/hi_real_time](examples/hi_real_time/hi.rb), open a terminal, cd into _examples/hi_real_time_, run `bundle install`, followed by `SLACK_API_TOKEN=<your API token> bundle exec ruby hi.rb`.
@@ -66,10 +66,10 @@
### Update Slack Web API
Slack Web API is updated from https://github.com/slack-ruby/slack-api-ref, a maintained, machine-readable version of Slack API Docs, generated by scraping [api.slack.com](https://api.slack.com). To update the Web API from the latest definition run the following Rake task.
```
-rake slack:api:update
+bundle exec rake slack:api:update
```
#### Patching Slack Web API
Sometimes it's necessary to patch auto-generated Slack Web API methods. For example, we want to help clients with calling `to_json` on the `attachments` parameter sent to `chat_postMessage`. See [#20](https://github.com/slack-ruby/slack-ruby-client/issues/20).