gitlab-org--gitlab-foss/lib/gitlab/environment.rb

10 lines
164 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2017-08-03 06:16:45 -04:00
module Gitlab
module Environment
def self.hostname
@hostname ||= ENV['HOSTNAME'] || Socket.gethostname
end
end
end