Class: Cardio::Command::CommandBase
- Inherits:
-
Object
- Object
- Cardio::Command::CommandBase
- Defined in:
- lib/cardio/command/command_base.rb
Overview
shared handling of commands splitting cardio and original args with “–”
Direct Known Subclasses
Instance Method Summary collapse
- #exit_with_child_status(command) ⇒ Object
- #run ⇒ Object
-
#split_args(args) ⇒ Object
split special cardio args and original command args separated by ‘–’.
Instance Method Details
#exit_with_child_status(command) ⇒ Object
10 11 12 13 |
# File 'lib/cardio/command/command_base.rb', line 10 def exit_with_child_status command command += " 2>&1" exit $CHILD_STATUS.exitstatus unless system command end |
#run ⇒ Object
5 6 7 8 |
# File 'lib/cardio/command/command_base.rb', line 5 def run puts command exit_with_child_status command end |
#split_args(args) ⇒ Object
split special cardio args and original command args separated by ‘–’
16 17 18 19 20 21 22 23 24 |
# File 'lib/cardio/command/command_base.rb', line 16 def split_args args before_split = true cardio_args, command_args = args.partition do |a| before_split = (a == "--" ? false : before_split) end command_args.shift [cardio_args, command_args] end |