94
95
96
97
98
99
100
101
102
|
# File 'lib/kamal/cli/app.rb', line 94
def details
on(KAMAL.app_hosts) do |host|
roles = KAMAL.roles_on(host)
roles.each do |role|
puts_by_host host, capture_with_info(*KAMAL.app(role: role, host: host).info)
end
end
end
|