module Capistrano3::Notification::DSL

Public Instance Methods

notify(message) click to toggle source
# File lib/capistrano3/notification/dsl.rb, line 4
def notify(message)
  return if dry_run?
  [Capistrano3::Notification::IRC,
   Capistrano3::Notification::Slack].each do |klass|
    klass.new(self).notify(message)
  end
end