Class: CDO_cmd
- Inherits:
-
OutofplaceCommand
- Object
- FileCommand
- OutofplaceCommand
- CDO_cmd
- Defined in:
- lib/file_command.rb
Direct Known Subclasses
CDO_MERGE_cmd, CDO_MONMEAN_cmd, CDO_MULC_cmd, CDO_SET_T_UNITS_DAYS_cmd, CDO_SUBC_cmd, CDO_TIMMEAN_cmd, CDO_YEARMEAN_cmd
Instance Method Summary collapse
-
#command_success?(out, err, status) ⇒ Boolean
cdo almost always prints something to the error stream.
Methods inherited from OutofplaceCommand
Methods inherited from FileCommand
Instance Method Details
#command_success?(out, err, status) ⇒ Boolean
cdo almost always prints something to the error stream
111 112 113 114 115 |
# File 'lib/file_command.rb', line 111 def command_success?(out, err, status) # cdo almost always prints something to the error stream return false unless status.success? true end |