Sha256: f6c16226336443bea85da28bbfac547f62f9cb5757eead255fcfc778fcc9f97c
Contents?: true
Size: 486 Bytes
Versions: 37
Compression:
Stored size: 486 Bytes
Contents
desc "Execute remote commands" task :console do stage = fetch(:stage) puts I18n.t("console.welcome", scope: :capistrano, stage: stage) loop do print "#{stage}> " command = (input = $stdin.gets) ? input.chomp : "exit" next if command.empty? if %w{quit exit q}.include? command puts t("console.bye") break else begin on roles :all do execute command end rescue => e puts e end end end end
Version data entries
37 entries across 37 versions & 2 rubygems