Releases: codelittinc/slacked
Releases · codelittinc/slacked
Version 0.9.2
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
Version 0.9.1
New feature
- Now you can pass the config in the post call
Slacked.post "I have a message from the underworld!", {icon_emoji: ':ghost:'}
More details you can find on our README.md
Version 0.9.0
New feature
- Now you can enable or disable the gem based on your rails environment config, to do it you only need to:
config.slacked_disabled = true
More details you can find on our README.md
First stable release
As it is the first release everything is explained on our README.md