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

gitlab.com/gitlab-org/gitlab-docs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConnor Shea <connor.james.shea@gmail.com>2016-11-30 09:31:33 +0300
committerConnor Shea <connor.james.shea@gmail.com>2016-11-30 09:31:33 +0300
commita15ba3f21c2f12a207faf6d30ba0c7b3d721379c (patch)
tree1713d615a2d27aaceab83fb2c1d644ad4d1a0c9f /Rakefile
parent982037fe046c092a10d220fd87208f8560b5f35c (diff)
Move the configuration data into the config file. Parse the YAML form the Rakefile.
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile50
1 files changed, 15 insertions, 35 deletions
diff --git a/Rakefile b/Rakefile
index 747fddbe..75c5f35f 100644
--- a/Rakefile
+++ b/Rakefile
@@ -1,47 +1,27 @@
desc 'Pulls down the CE, EE, Omnibus and Runner git repos and merges the content of their doc directories into the nanoc site'
task :pull_repos do
+ require 'yaml'
+
+ config = YAML.load_file('./nanoc.yaml')
+
# By default won't delete any directories, requires all relevant directories
# be empty. Run `RAKE_FORCE_DELETE=true rake pull_repos` to have directories
# deleted.
force_delete = ENV['RAKE_FORCE_DELETE']
- ce = {
- name: 'ce',
- repo: 'https://gitlab.com/gitlab-org/gitlab-ce.git',
- temp_dir: 'tmp/ce/',
- dest_dir: 'content/ce',
- doc_dir: 'doc'
- }
+ ce = config["products"]["ce"]
- ee = {
- name: 'ee',
- repo: 'https://gitlab.com/gitlab-org/gitlab-ee.git',
- temp_dir: 'tmp/ee/',
- dest_dir: 'content/ee',
- doc_dir: 'doc'
- }
+ ee = config["products"]["ee"]
- omnibus = {
- name: 'omnibus',
- repo: 'https://gitlab.com/gitlab-org/omnibus-gitlab.git',
- temp_dir: 'tmp/omnibus/',
- dest_dir: 'content/omnibus',
- doc_dir: 'doc'
- }
+ omnibus = config["products"]["omnibus"]
- runner = {
- name: 'runner',
- repo: 'https://gitlab.com/gitlab-org/gitlab-ci-multi-runner.git',
- temp_dir: 'tmp/runner/',
- dest_dir: 'content/runner',
- doc_dir: 'docs'
- }
+ runner = config["products"]["runner"]
products = [ce, ee, omnibus, runner]
dirs = []
products.each do |product|
- dirs.push(product[:temp_dir])
- dirs.push(product[:dest_dir])
+ dirs.push(product["temp_dir"])
+ dirs.push(product["dest_dir"])
end
if force_delete
@@ -69,13 +49,13 @@ task :pull_repos do
end
products.each do |product|
- temp_dir = File.join(product[:temp_dir])
- puts "\n=> Cloning #{product[:repo]} into #{temp_dir}\n"
+ temp_dir = File.join(product['temp_dir'])
+ puts "\n=> Cloning #{product['repo']} into #{temp_dir}\n"
- `git clone #{product[:repo]} #{temp_dir} --depth 1 --branch master`
+ `git clone #{product['repo']} #{temp_dir} --depth 1 --branch master`
- temp_doc_dir = File.join(product[:temp_dir], product[:doc_dir], '.')
- destination_dir = File.join(product[:dest_dir])
+ temp_doc_dir = File.join(product['temp_dir'], product['doc_dir'], '.')
+ destination_dir = File.join(product['dest_dir'])
puts "\n=> Copying #{temp_doc_dir} into #{destination_dir}\n"
FileUtils.cp_r(temp_doc_dir, destination_dir)
end