Class: Console::Shell

Inherits:
Generic show all
Defined in:
lib/console/shell.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

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

Returns a new instance of Shell.



33
34
35
36
37
# File 'lib/console/shell.rb', line 33

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

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



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

def arguments
  @arguments
end

#environmentObject (readonly)

Returns the value of attribute environment.



39
40
41
# File 'lib/console/shell.rb', line 39

def environment
  @environment
end

#optionsObject (readonly)

Returns the value of attribute options.



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

def options
  @options
end

Class Method Details

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



25
26
27
28
29
30
31
# File 'lib/console/shell.rb', line 25

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



49
50
51
# File 'lib/console/shell.rb', line 49

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

Instance Method Details

#chdir_string(options) ⇒ Object



43
44
45
46
47
# File 'lib/console/shell.rb', line 43

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

#format(output, terminal, verbose) ⇒ Object



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

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