summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Park <thomas@thomaspark.me>2013-11-12 16:00:06 -0500
committerThomas Park <thomas@thomaspark.me>2013-11-12 16:00:06 -0500
commitefaf60a5e72640d13fc13c4837da0282d8a2d4ed (patch)
tree12b928b12762e0d3df4431c698fcfc1bc5e0fac0
parent7e896cd32890093aa06513eea774f86f82301487 (diff)
add gemfile and config for jekyll/gh-pages
-rw-r--r--.gitignore4
-rw-r--r--Gemfile2
-rw-r--r--_config.yml1
3 files changed, 6 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
index 37eef13c..a4c9a166 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
.idea
components
node_modules
-build \ No newline at end of file
+build
+_site
+*.lock \ No newline at end of file
diff --git a/Gemfile b/Gemfile
new file mode 100644
index 00000000..3a1ebf30
--- /dev/null
+++ b/Gemfile
@@ -0,0 +1,2 @@
+source 'https://rubygems.org'
+gem 'github-pages' \ No newline at end of file
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 00000000..e546f638
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1 @@
+exclude: [src] \ No newline at end of file