class OnlyofficeTestrailWrapper::SystemHelper

Stuff for working with OS

Public Class Methods

hostname() click to toggle source

@return [String] name of current host

# File lib/onlyoffice_testrail_wrapper/helpers/system_helper.rb, line 10
def hostname
  name = Socket.gethostname
  OnlyofficeLoggerHelper.log("hostname is: #{name}")
  name
end