FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
developer.github.com/Rakefile at master · sgwill/developer.github.com · GitHub
sgwill
/
developer.github.com
Public
forked from
github/developer.github.com
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
developer.github.com
/
Rakefile
Copy path
More file actions
More file actions
Latest commit
History
History
History
58 lines (48 loc) · 1.64 KB
Breadcrumbs
developer.github.com
/
Rakefile
Copy path
File metadata and controls
58 lines (48 loc) · 1.64 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
require
'nanoc3/tasks'
require
'html/proofer'
task
:default
=>
[
:test
]
desc
"Compile the site"
task
:compile
do
`nanoc compile`
end
desc
"Test the output"
task
:test
=>
[
:clean
,
:compile
]
do
HTML
::
Proofer
.
new
(
"./output"
)
.
run
end
# Prompt user for a commit message; default: P U B L I S H :emoji:
def
commit_message
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
}
"
print
"Enter a commit message (default: '
#{
default_message
}
'): "
STDOUT
.
flush
mesg
=
STDIN
.
gets
.
chomp
.
strip
mesg
=
default_message
if
mesg
==
''
mesg
.
gsub
(
/'/
,
''
)
# Allow this to be handed off via -m '#{message}'
end
desc
"Publish to http://developer.github.com"
task
:publish
=>
[
:clean
]
do
mesg
=
commit_message
FileUtils
.
rm_r
(
'output'
)
if
File
.
exist?
(
'output'
)
sh
"nanoc compile"
ENV
[
'GIT_DIR'
]
=
File
.
expand_path
(
`git rev-parse --git-dir`
.
chomp
)
old_sha
=
`git rev-parse refs/remotes/origin/gh-pages`
.
chomp
Dir
.
chdir
(
'output'
)
do
ENV
[
'GIT_INDEX_FILE'
]
=
gif
=
'/tmp/dev.gh.i'
ENV
[
'GIT_WORK_TREE'
]
=
Dir
.
pwd
File
.
unlink
(
gif
)
if
File
.
file?
(
gif
)
`git add -A`
tsha
=
`git write-tree`
.
strip
puts
"Created tree
#{
tsha
}
"
if
old_sha
.
size
==
40
csha
=
`git commit-tree
#{
tsha
}
-p
#{
old_sha
}
-m '
#{
mesg
}
'`
.
strip
else
csha
=
`git commit-tree
#{
tsha
}
-m '
#{
mesg
}
'`
.
strip
end
puts
"Created commit
#{
csha
}
"
puts
`git show
#{
csha
}
--stat`
puts
"Updating gh-pages from
#{
old_sha
}
"
`git update-ref refs/heads/gh-pages
#{
csha
}
`
`git push origin gh-pages`
end
end
Back
|
FazBrowse Home
|
New Git URL