From 84e6ade5878af7891aadb948707fe9aeadf4aec4 Mon Sep 17 00:00:00 2001 From: David Danzilio Date: Thu, 7 Apr 2016 17:13:39 -0400 Subject: [PATCH 1/3] Adding GitHub Pages tasks --- lib/puppet-strings/rake_tasks.rb | 33 ++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/lib/puppet-strings/rake_tasks.rb b/lib/puppet-strings/rake_tasks.rb index a7329f1..5a9cec7 100644 --- a/lib/puppet-strings/rake_tasks.rb +++ b/lib/puppet-strings/rake_tasks.rb @@ -15,4 +15,37 @@ namespace :strings do task :serve do PuppetX::PuppetLabs::Strings::Util.serve end + + namespace :gh_pages do + git_uri = `git config --get remote.origin.url`.strip + + desc "Checkout the gh-pages branch for doc generation." + task :checkout do + unless Dir.exist?('doc') + Dir.mkdir('doc') + Dir.chdir('doc') do + system 'git init' + system "git remote add origin #{git_uri}" + system 'git pull' + system 'git checkout -b gh-pages' + end + end + end + + desc "Push new docs to GitHub." + task :push do + Dir.chdir('doc') do + system 'git add .' + system "git commit -m '[strings] Generated Documentation Update'" + system 'git push origin gh-pages -f' + end + end + + desc "Run checkout, generate, and push tasks." + task :update => [ + :checkout, + :'strings:generate', + :push, + ] + end end From 825614067a5496fcef722d19df109eee476877c1 Mon Sep 17 00:00:00 2001 From: David Danzilio Date: Thu, 7 Apr 2016 17:25:39 -0400 Subject: [PATCH 2/3] Handling existing doc directory --- lib/puppet-strings/rake_tasks.rb | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/lib/puppet-strings/rake_tasks.rb b/lib/puppet-strings/rake_tasks.rb index 5a9cec7..eda4b5c 100644 --- a/lib/puppet-strings/rake_tasks.rb +++ b/lib/puppet-strings/rake_tasks.rb @@ -21,7 +21,14 @@ namespace :strings do desc "Checkout the gh-pages branch for doc generation." task :checkout do - unless Dir.exist?('doc') + if Dir.exist?('doc') + fail "The 'doc' directory (#{File.expand_path('doc')}) is not a Git repository! Remove it and run the Rake task again." unless Dir.exist?('doc/.git') + Dir.chdir('doc') do + system 'git checkout gh-pages' + system 'git reset --hard origin/gh-pages' + system 'git pull origin gh-pages' + end + else Dir.mkdir('doc') Dir.chdir('doc') do system 'git init' From aac3dd08b03d01f6a61e8947f9711453323c85b2 Mon Sep 17 00:00:00 2001 From: David Danzilio Date: Tue, 5 Jul 2016 15:51:39 -0400 Subject: [PATCH 3/3] Adding documentation for the gh_pages task --- README.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0ada44b..37acad8 100644 --- a/README.md +++ b/README.md @@ -191,7 +191,7 @@ Here are a few other good resources for getting started with documentation: Rake Tasks ----- -This module is also available as a Gem and makes two rake tasks (`strings:generate` and `strings:serve`) available in `puppet-strings/rake_tasks`. To add this to your module's CI workflow, be sure to add this module to your `Gemfile`: +This module is also available as a Gem and makes three rake tasks (`strings:generate`, `strings:serve`, and `strings:gh_pages`) available in `puppet-strings/rake_tasks`. To add this to your module's CI workflow, be sure to add this module to your `Gemfile`: In addition to generating the usual 'doc' directory of HTML documentation, the `strings:generate` rake task will also drop a strings.json file containing a JSON representation of the module into the directory the rake task was run from. @@ -219,6 +219,15 @@ PuppetStrings::RakeTasks::Generate.new(:documentation) do |task| end ``` +The `strings:gh_pages` task will generate your Strings documentation to be made available via [GitHub Pages](https://pages.github.com/). It will: + + 1. Create a `doc` directory in the root of your project + 2. Check out the `gh-pages` branch of the current repository in the `doc` directory (it will create a branch if one does not already exist) + 3. Generate strings documentation using the `strings:generate` task + 4. Commit the changes and push them to the `gh-pages` branch **with the `-f` flag** + +This task aims to keep the `gh-pages` branch up to date with the current code and uses the `-f` flag when pushing to the `gh-pages` branch. Please keep this in mind as it **will be destructive** if not used properly. + Developing and Contributing -----