Sha256: 08be6e0cc6c1cc9ba7df2787dfb374f131746df88481bc6061d59330d60122c1
Contents?: true
Size: 710 Bytes
Versions: 4
Compression:
Stored size: 710 Bytes
Contents
# frozen_string_literal: true # takelage 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' 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
4 entries across 4 versions & 1 rubygems