Repo created
This commit is contained in:
parent
92216c1ae2
commit
6e051b9cd4
280 changed files with 19204 additions and 2 deletions
6
docs/script/bootstrap
Normal file
6
docs/script/bootstrap
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
gem install bundler
|
||||
bundle install
|
||||
15
docs/script/cibuild
Normal file
15
docs/script/cibuild
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
#!/bin/sh
|
||||
|
||||
set -e
|
||||
|
||||
script/build
|
||||
|
||||
if test -e "./_site/index.html";then
|
||||
echo "It builds!"
|
||||
rm -Rf _site
|
||||
else
|
||||
echo "Huh. That's odd. The example site doesn't seem to build."
|
||||
exit 1
|
||||
fi
|
||||
|
||||
gem build minima.gemspec
|
||||
3
docs/script/server
Normal file
3
docs/script/server
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
|
||||
bundle exec jekyll serve
|
||||
Loading…
Add table
Add a link
Reference in a new issue