Class: Console::Event::Spawn

Inherits:
Generic
  • Object
show all
Defined in:
lib/console/event/spawn.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(environment, *arguments, **options) ⇒ Spawn

Returns a new instance of Spawn.



34
35
36
37
38
# File 'lib/console/event/spawn.rb', line 34

def initialize(environment, *arguments, **options)
	@environment = environment
	@arguments = arguments
	@options = options
end

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



41
42
43
# File 'lib/console/event/spawn.rb', line 41

def arguments
  @arguments
end

#environmentObject (readonly)

Returns the value of attribute environment.



40
41
42
# File 'lib/console/event/spawn.rb', line 40

def environment
  @environment
end

#optionsObject (readonly)

Returns the value of attribute options.



42
43
44
# File 'lib/console/event/spawn.rb', line 42

def options
  @options
end

Class Method Details

.for(*arguments, **options) ⇒ Object



26
27
28
29
30
31
32
# File 'lib/console/event/spawn.rb', line 26

def self.for(*arguments, **options)
	if arguments.first.is_a?(Hash)
		self.new(*arguments, **options)
	else
		self.new(nil, arguments, **options)
	end
end

.register(terminal) ⇒ Object



50
51
52
# File 'lib/console/event/spawn.rb', line 50

def self.register(terminal)
	terminal[:shell_command] ||= terminal.style(:blue, nil, :bold)
end

Instance Method Details

#chdir_string(options) ⇒ Object



44
45
46
47
48
# File 'lib/console/event/spawn.rb', line 44

def chdir_string(options)
	if options and chdir = options[:chdir]
		" in #{chdir}"
	end
end

#format(output, terminal, verbose) ⇒ Object



54
55
56
57
58
59
60
61
62
63
64
# File 'lib/console/event/spawn.rb', line 54

def format(output, terminal, verbose)
	arguments = @arguments.flatten.collect(&:to_s)
	
	output.puts "  #{terminal[:shell_command]}#{arguments.join(' ')}#{terminal.reset}#{chdir_string(options)}"
	
	if verbose and @environment
		@environment.each do |key, value|
			output.puts "    export #{key}=#{value}"
		end
	end
end