Sha256: dad2748a27ae587ab806860d73244bc3c2631138bdc7b6b1f619a7860943f6e2
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 KB
Contents
require "vmc/cli/app/base" module VMC::App class Instances < Base desc "List an app's instances" group :apps, :info, :hidden => true input :apps, :desc => "Applications whose instances to list", :argument => :splat, :singular => :app, :from_given => by_name(:app) def instances apps = input[:apps] fail "No applications given." if apps.empty? spaced(apps) do |app| instances = with_progress("Getting instances for #{c(app.name, :name)}") do app.instances end line unless quiet? spaced(instances) do |i| if quiet? line i.id else display_instance(i) end end end end def display_instance(i) start_line "instance #{c("\##{i.id}", :instance)}: " puts "#{b(c(i.state.downcase, state_color(i.state)))} " indented do if s = i.since line "started: #{c(s.strftime("%F %r"), :neutral)}" end if d = i.debugger line "debugger: port #{b(d[:port])} at #{b(d[:ip])}" end if c = i.console line "console: port #{b(c[:port])} at #{b(c[:ip])}" end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems