forked from github/developer.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRakefile
More file actions
67 lines (56 loc) · 2.1 KB
/
Rakefile
File metadata and controls
67 lines (56 loc) · 2.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
require_relative 'lib/resources'
require 'tmpdir'
task :default => [:test]
desc "Compile the site"
task :compile do
`nanoc compile`
end
desc "Test the output"
task :test => [:remove_tmp_dir, :remove_output_dir, :compile, :run_proofer]
desc "Run the HTML-Proofer"
task :run_proofer do
require 'html/proofer'
ignored_links = [%r{www.w3.org}]
latest_ent_version = GitHub::Resources::Helpers::CONTENT['LATEST_ENTERPRISE_VERSION']
# swap versionless Enterprise articles with versioned paths
href_swap = {
%r{help\.github\.com/enterprise/admin/} => "help.github.com/enterprise/#{latest_ent_version}/admin/",
%r{help\.github\.com/enterprise/user/} => "help.github.com/enterprise/#{latest_ent_version}/user/"
}
HTML::Proofer.new("./output", :href_ignore => ignored_links, :href_swap => href_swap).run
end
desc "Remove the tmp dir"
task :remove_tmp_dir do
FileUtils.rm_r('tmp') if File.exist?('tmp')
end
desc "Remove the output dir"
task :remove_output_dir do
FileUtils.rm_r('output') if File.exist?('output')
end
# Prompt user for a commit message; default: P U B L I S H :emoji:
def commit_message(no_commit_msg = false)
publish_emojis = [':boom:', ':rocket:', ':metal:', ':bulb:', ':zap:',
':sailboat:', ':gift:', ':ship:', ':shipit:', ':sparkles:', ':rainbow:']
default_message = "P U B L I S H #{publish_emojis.sample}"
unless no_commit_msg
print "Enter a commit message (default: '#{default_message}'): "
STDOUT.flush
mesg = STDIN.gets.chomp.strip
end
mesg = default_message if mesg.nil? || mesg == ''
mesg.gsub(/'/, '') # Allow this to be handed off via -m '#{message}'
end
desc "Publish to http://developer.github.com"
task :publish, [:no_commit_msg] => [:remove_tmp_dir, :remove_output_dir, :compile] do |t, args|
message = commit_message(args[:no_commit_msg])
Dir.mktmpdir do |tmp|
system "mv output/* #{tmp}"
system "cp .gitignore #{tmp}"
system 'git checkout gh-pages'
system "rsync -av #{tmp}/ ."
system 'git add .'
system "git commit -am #{message.shellescape}"
system 'git push origin gh-pages --force'
system 'git checkout master'
end
end