#!/usr/bin/env rake # encoding: utf-8 # Copyright:: Copyright (c) 2015 Chef Software, Inc. # License:: Apache License, Version 2.0 # # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, software # distributed under the License is distributed on an "AS IS" BASIS, # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. # See the License for the specific language governing permissions and # limitations under the License. # $LOAD_PATH.unshift(File.join(File.expand_path(File.dirname(__FILE__)), '..', 'lib')) require_relative '../tasks/docs.rb' require_relative '../tasks/shared.rb' task :default do puts 'There is no default task - see `rake --tasks` for available www-related tasks.' puts 'Run `rake www` to do a full website release.' exit(1) end namespace :www do desc 'Builds the tutorial contents' task :tutorial do Log.section 'Build the online tutorial in tutorial/' sh('cd tutorial/ && npm install') sh('cd tutorial/ && gulp build') Verify.file('tutorial/dist/index.html') Verify.file('tutorial/dist/css/inspec_tutorial.css') Verify.file('tutorial/dist/scripts/inspec_tutorial.js') Verify.file('tutorial/dist/dist/inspec_tutorial.js') end desc 'Builds the middleman site' task :site do Log.section 'Build middleman project' Bundler.with_clean_env { sh('bundle install && bundle exec middleman build') } Verify.file('build/index.html') Verify.file('build/javascripts/all.js') Verify.file('build/stylesheets/site.css') end desc 'Assemble the website site from middleman and the tutorial' task :assemble do Log.section 'Copy only tutorial into middleman build directory' sh('rsync -a --exclude=index.html tutorial/dist/* build/') sh('cp tutorial/dist/index.html build/tutorial.html') end desc 'Builds the full site locally' task build: ['www:tutorial', 'www:site', 'www:assemble'] task :clean do dst = 'build' FileUtils.rm_rf(dst) if File.directory?(dst) end desc 'Releases the site to gh-pages' task :release do # This folder contains the built files dst = 'build' unless File.directory?(dst) && File.file?(File.join(dst, 'index.html')) puts 'It looks like you have not built the site yet. Calling rake www:build' Rake::Task['www:build'].invoke end unless File.directory?(dst) && File.file?(File.join(dst, 'index.html')) raise 'It looks like the site was not build. Aborting.' end # check if git exists sh('command -v git >/dev/null 2>&1') || raise("It looks like `git` isn't installed. It is required to run this build task.") unless sh('git diff-index --quiet HEAD --') raise 'Please make sure you have no uncommitted changes in this repository.' end File.write(File.join(dst, 'CNAME'), 'inspec.io') file_count = Dir[File.join(dst, '*')].length file_size = `du -hs #{dst}`.sub(/\s+.*$/m, '') if system('git rev-parse --verify gh-pages') Log.info 'Remove local gh-pages branch' sh('git branch -D gh-pages') end current_branch = `git rev-parse --abbrev-ref HEAD`.strip if current_branch.empty? raise 'Cannot determine current branch to go back to! Aborting.' end Log.info 'Create empty gh-pages branch' sh('git checkout --orphan gh-pages') # this rest of this task needs to be run from the root of the inspec repo # so it can properly move and clean files in the gh-pages branch Dir.chdir(File.join(Dir.pwd, '..')) do dst_from_root = File.join('www', dst) Log.info 'Clear out all local git files!' sh('git rm -rf .') Log.info "Add the built files in #{dst_from_root}" sh("git add #{dst_from_root}") Log.info 'Remove all other files in this empty branch' sh('git clean -df') Log.info 'Move the site to the root directory' sh("git mv #{File.join(dst_from_root, '*')} .") Log.info 'Commit to gh-pages' sh("git commit -m 'website update'") require 'inquirer' if Ask.confirm("Ready to go, I have #{file_count} files at #{file_size}. "\ 'Do you want to push this live?', default: false) Log.info 'push to origin, this may take a moment' sh('git push -u origin --force-with-lease gh-pages') else puts 'Aborted.' end end sh("git checkout #{current_branch}") end end desc 'Full website release: includes local clean, docs build, site build, and then release' task :www do Rake::Task['www:clean'].invoke Rake::Task['docs'].invoke Rake::Task['www:build'].invoke Rake::Task['www:release'].invoke end