New feature
- This release introduces the ability for a user to set a dynamic webhook
URL through the use of theconfig
parameter toSlacked#post
and
Slacked#post_async
.
Examples:
Sending a message to the webhook defined in the .env
file
Slacked.post('My message to the default webhook')
Sending a message to a specific webhook on execution time:
Slacked.post('My message to a specific webhook url', { webhook_url: '<SOME_WEBHOOK_URL>'})
More details you can find on our README.md