Sha256: 769f98e6adb9dba934ac690d5940623d0d4ffc7a3b60bfde4935125a2f434c23
Contents?: true
Size: 523 Bytes
Versions: 23
Compression:
Stored size: 523 Bytes
Contents
require 'json' module SimpleDeploy class StackReader def initialize(args) @sf = Stackster::StackFormater.new args @sr = Stackster::StackReader.new args end def attributes @sf.attributes end def instances @sf.instances_public_ip_addresses end def status @sr.status end def events @sr.events end def outputs @sr.outputs end def resources @sr.resources end def template @sr.template end end end
Version data entries
23 entries across 23 versions & 1 rubygems