summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFranck Cuny <franckcuny@gmail.com>2014-11-28 14:24:48 -0800
committerFranck Cuny <franckcuny@gmail.com>2014-11-28 14:24:48 -0800
commit8126321705d10d77f0a88305c8a4723822e87acd (patch)
tree4925668c4c168b23a69a99bb422f4b9e3705c8af
parentignore the vendor directory (diff)
downloadlumberjaph-8126321705d10d77f0a88305c8a4723822e87acd.tar.gz
install gems into vendor/
Diffstat (limited to '')
-rw-r--r--.bundle/config3
-rw-r--r--Makefile4
-rw-r--r--_config.yml3
3 files changed, 7 insertions, 3 deletions
diff --git a/.bundle/config b/.bundle/config
new file mode 100644
index 0000000..57d4641
--- /dev/null
+++ b/.bundle/config
@@ -0,0 +1,3 @@
+---
+BUNDLE_PATH: vendor/bundle
+BUNDLE_DISABLE_SHARED_GEMS: '1'
diff --git a/Makefile b/Makefile
index d597d26..dc2ae1c 100644
--- a/Makefile
+++ b/Makefile
@@ -22,7 +22,7 @@ server: clean
bundle exec jekyll server --port 3001 --watch --drafts
publish: build images
- rsync -chavzOP --stats _site/ /srv/www/lumberjaph.net/
+ rsync -chavzOP --stats _site/ 104.236.175.223:/srv/www/lumberjaph.net/
deps:
- bundle install
+ bundle install --path vendor/bundle
diff --git a/_config.yml b/_config.yml
index edb0eee..a148e05 100644
--- a/_config.yml
+++ b/_config.yml
@@ -4,4 +4,5 @@ markdown: redcarpet
name: lumberjaph.net
future: false
redcarpet:
- extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "strikethrough", "superscript"] \ No newline at end of file
+ extensions: ["no_intra_emphasis", "fenced_code_blocks", "autolink", "strikethrough", "superscript"]
+exclude: ['vendor']