Sha256: a6b95499eb016e0fe4a31d86434b10520304a30c8d9327b9e8e35a58e3a5de2b
Contents?: true
Size: 756 Bytes
Versions: 6
Compression:
Stored size: 756 Bytes
Contents
# frozen_string_literal: true # takeltau mutagen socket list module MutagenSocketList # Backend method for mutagen socket list. # @return [String] List of takelage sockets def mutagen_socket_list log.debug 'List the mutagen takelage sockets' return false unless mutagen_check_daemon sockets = _mutagen_socket_list if sockets.to_s.empty? log.debug 'No mutagen takelage sockets found' return false end log.debug "Found mutagen takelage sockets: \n\"\"\"\n#{sockets}\"\"\"" sockets.to_s end private # Get git branch. def _mutagen_socket_list cmd_list_socket = format( config.active['cmd_mutagen_forward_socket_list'], takellabel: @takellabel ) run cmd_list_socket end end
Version data entries
6 entries across 6 versions & 1 rubygems