mirror of
https://github.com/gitlabhq/gitlabhq.git
synced 2025-07-25 16:00:50 +00:00
12 lines
402 B
Ruby
12 lines
402 B
Ruby
# rubocop:disable Naming/FileName
|
|
|
|
# frozen_string_literal: true
|
|
|
|
# When we say gem 'gitlab-http' in Gemfile, bundler will also run require gitlab-http for us and it'd
|
|
# resolve the conflict when we call `Gitlab::HTTP_V2.configure` first time.
|
|
# See more: https://gitlab.com/gitlab-org/gitlab/-/merge_requests/125024#note_1502698924
|
|
|
|
require_relative 'gitlab/http_v2'
|
|
|
|
# rubocop:enable Naming/FileName
|