Welcome to mirror list, hosted at ThFree Co, Russian Federation.

docs.rb « gitlab « lib - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1a38e3711ac5f0833fffc792ab3109e8f5577a73 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# frozen_string_literal: true

$LOAD_PATH.unshift(__dir__)

require 'nanoc'

module Gitlab
  module Docs
    autoload :Document, 'docs/document'
    autoload :Element, 'docs/element'
    autoload :Link, 'docs/link'
    autoload :Page, 'docs/page'
    autoload :Nanoc, 'docs/nanoc'
  end
end