Skip to content

Releases: codelittinc/slacked

Version 0.9.2

10 Jul 19:06
Compare
Choose a tag to compare

New feature

  • This release introduces the ability for a user to set a dynamic webhook
    URL through the use of the config parameter to Slacked#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

19 Dec 15:44
Compare
Choose a tag to compare

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

09 Dec 14:52
Compare
Choose a tag to compare

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

08 Dec 00:10
Compare
Choose a tag to compare

As it is the first release everything is explained on our README.md