Sha256: 7013ac4dec7e581b8facb5cedd1bec184626b884d55c5696ffa63ec34ff79e33
Contents?: true
Size: 556 Bytes
Versions: 31
Compression:
Stored size: 556 Bytes
Contents
module Vagrant module Plugin module V2 # Base class for a host in Vagrant. A host class contains functionality # that is specific to a specific OS that is running Vagrant. This # abstraction is done because there is some host-specific logic that # Vagrant must do in some cases. class Host # This returns true/false depending on if the current running system # matches the host class. # # @return [Boolean] def detect?(env) false end end end end end
Version data entries
31 entries across 27 versions & 4 rubygems