class CopyTunerClient::Configuration

def protocol

Returns:
  • (String) - +https+ if {#secure?} returns +true+, +http+ otherwise.
def protocol
  if secure?
    'https'
  else
    'http'
  end
end