Sha256: a1efd9254085a973d1f5a270a38c637e6d7f2bc225244f07cbf46b543cb16cfc
Contents?: true
Size: 635 Bytes
Versions: 18
Compression:
Stored size: 635 Bytes
Contents
require_relative './all' Gem.find_files('capistrano_multiconfig_parallel/extensions/**/*.rb').each { |path| require path } module CapistranoMulticonfigParallel # this is the class that will be invoked from terminal , and willl use the invoke task as the primary function. class CLI def self.start CapistranoMulticonfigParallel.check_terminal_tty CapistranoMulticonfigParallel.original_args = ARGV.dup CapistranoMulticonfigParallel::Application.new.run rescue Interrupt `stty icanon echo` $stderr.puts 'Command cancelled.' rescue => error $stderr.puts error exit(1) end end end
Version data entries
18 entries across 18 versions & 1 rubygems