class Sfn::Callback::AlertCallback

Public Instance Methods

after(info) click to toggle source
# File lib/callback.rb, line 9
def after(info)
  puts "Operation has concluded on stack: #{info[:sparkle_stack].name}"
end
before(info) click to toggle source
# File lib/callback.rb, line 5
def before(info)
  puts "Operation being applied to stack:  #{info[:sparkle_stack].name}"
end