diff options
author | Thomas Park <thomas@thomaspark.me> | 2013-11-12 16:00:06 -0500 |
---|---|---|
committer | Thomas Park <thomas@thomaspark.me> | 2013-11-12 16:00:06 -0500 |
commit | efaf60a5e72640d13fc13c4837da0282d8a2d4ed (patch) | |
tree | 12b928b12762e0d3df4431c698fcfc1bc5e0fac0 | |
parent | 7e896cd32890093aa06513eea774f86f82301487 (diff) |
add gemfile and config for jekyll/gh-pages
-rw-r--r-- | .gitignore | 4 | ||||
-rw-r--r-- | Gemfile | 2 | ||||
-rw-r--r-- | _config.yml | 1 |
3 files changed, 6 insertions, 1 deletions
@@ -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 |