Class: CommandEntry
- Inherits:
-
Object
- Object
- CommandEntry
- Defined in:
- lib/easy_type/command_entry.rb
Instance Attribute Summary collapse
-
#arguments ⇒ Object
readonly
Returns the value of attribute arguments.
-
#command ⇒ Object
readonly
Returns the value of attribute command.
-
#context ⇒ Object
readonly
Returns the value of attribute context.
Class Method Summary collapse
-
.set_binding(the_binding) ⇒ Object
rubocop:disable ClassVars.
Instance Method Summary collapse
- #execute ⇒ Object
-
#initialize(command, arguments, options = {}) ⇒ CommandEntry
constructor
rubocop:enable ClassVars.
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, = {}) @command = command @arguments = arguments.is_a?(Array) ? arguments : [arguments] @options = end |
Instance Attribute Details
#arguments ⇒ Object (readonly)
Returns the value of attribute arguments.
6 7 8 |
# File 'lib/easy_type/command_entry.rb', line 6 def arguments @arguments end |
#command ⇒ Object (readonly)
Returns the value of attribute command.
6 7 8 |
# File 'lib/easy_type/command_entry.rb', line 6 def command @command end |
#context ⇒ Object (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
#execute ⇒ Object
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 |