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

nanoc.rb « docs « gitlab « lib - gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70b4c3977c3dde64a86c2986b902988f5ee84fb9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module Gitlab
  module Docs
    module Nanoc
      def self.config
        @config ||= YAML.load(File.read('nanoc.yaml'))
      end

      def self.output_dir
        config.fetch('output_dir')
      end
    end
  end
end