module MojoMagick class CommandStatus < Struct.new(:command, :return_value, :error, :system_status) def success? system_status.success? end def exit_code system_status.exitstatus || 'unknown' end end end