INNER CODE UNIT · Ruby
self
EugenMayer/docker-sync · lib/docker-sync/dependencies.rb:13
def self.ensure_all!(config)
return if ENV['DOCKER_SYNC_SKIP_DEPENDENCIES_CHECK']
return ensure_all_for_mac!(config) if Environment.mac?
return ensure_all_for_linux!(config) if Environment.linux?
return ensure_all_for_freebsd!(config) if Environment.freebsd?
raise(UNSUPPORTED_OPERATING_SYSTEM)
end
def self.ensure_all_for_mac!(config)
PackageManager.ensure!
Docker.ensure!
Unison.ensure! if config.unison_required?
Rsync.ensure! if config.rsync_required?
Fswatch.ensure! if config.fswatch_required?
end
def self.ensure_all_for_linux!(config)
Docker.ensure!