BigW Consortium Gitlab

environment.rb 133 Bytes
module Gitlab
  module Environment
    def self.hostname
      @hostname ||= ENV['HOSTNAME'] || Socket.gethostname
    end
  end
end