module Stackster class StackDestroyer def initialize(args) @config = args[:config] @name = args[:name] @cf = AWS::CloudFormation.new :config => @config end def destroy @cf.destroy @name end end end