Class: CommandEntry

Inherits:
Object
  • Object
show all
Defined in:
lib/easy_type/command_entry.rb

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(command, arguments, options = {}) ⇒ CommandEntry

rubocop:enable ClassVars



14
15
16
17
18
# File 'lib/easy_type/command_entry.rb', line 14

def initialize(command, arguments, options = {})
  @command    = command
  @arguments  = arguments.is_a?(Array) ? arguments : [arguments]
  @options    = options
end

Instance Attribute Details

#argumentsObject (readonly)

Returns the value of attribute arguments.



6
7
8
# File 'lib/easy_type/command_entry.rb', line 6

def arguments
  @arguments
end

#commandObject (readonly)

Returns the value of attribute command.



6
7
8
# File 'lib/easy_type/command_entry.rb', line 6

def command
  @command
end

#contextObject (readonly)

Returns the value of attribute context.



6
7
8
# File 'lib/easy_type/command_entry.rb', line 6

def context
  @context
end

Class Method Details

.set_binding(the_binding) ⇒ Object

rubocop:disable ClassVars



9
10
11
# File 'lib/easy_type/command_entry.rb', line 9

def self.set_binding(the_binding)
  @@binding = the_binding
end

Instance Method Details

#executeObject



20
21
22
23
24
25
26
27
28
29
30
# File 'lib/easy_type/command_entry.rb', line 20

def execute
  normalized_command = ''
  ruby_18 { normalized_command = command.to_s }
  ruby_19 { normalized_command = command.to_sym }
  if @@binding.methods.include?(normalized_command)
    @@binding.send(normalized_command, normalized_arguments, @options)
  else
    full_command = arguments.dup.unshift(command).join(' ')
    Puppet::Util::Execution.execute(full_command, :failonfail => true)
  end
end