module Methadone module ExecutionStrategy # Methadone Internal - treat as private # # Base strategy for MRI rubies. class MRI < Base def run_command(command) raise "subclass must implement" end def exception_meaning_command_not_found Errno::ENOENT end end end end