phallstrom/slackistrano

How can I set custom slack_username

medesko opened this issue · 1 comments

Hi @phallstrom,

Thank You for this amazing Job!

How can I set custom slack_username and slack_icon_url ?

You need to define your own custom messaging class per

https://github.com/phallstrom/slackistrano#customizing-the-messaging

with a class something like this:

module Slackistrano
  class CustomMessaging < Messaging::Base
     def icon_url
        'http://some.site/path/to/image.png'
      end

      def username
        'Medesko'
      end
  end
end