Sha256: 125eb2c60f44b31d03c790a98b4594cf4982dd6184412a6c1d175793ea927f83
Contents?: true
Size: 357 Bytes
Versions: 9
Compression:
Stored size: 357 Bytes
Contents
require 'simple_deploy/stack/ssh' module SimpleDeploy class Stack class Execute def initialize(args) @config = SimpleDeploy.config @args = args end def execute(args) ssh.execute args end private def ssh @ssh ||= SimpleDeploy::Stack::SSH.new @args end end end end
Version data entries
9 entries across 9 versions & 1 rubygems