From 7751379acf32984910943ffc0d59f01a3b274426 Mon Sep 17 00:00:00 2001 From: "Rico Sta. Cruz" Date: Sun, 21 Jun 2015 04:50:07 +0800 Subject: [PATCH] Simplify Gemfile setup --- _/Gemfile => Gemfile | 0 _/Gemfile.lock => Gemfile.lock | 3 +++ Makefile | 7 +++---- 3 files changed, 6 insertions(+), 4 deletions(-) rename _/Gemfile => Gemfile (100%) rename _/Gemfile.lock => Gemfile.lock (99%) diff --git a/_/Gemfile b/Gemfile similarity index 100% rename from _/Gemfile rename to Gemfile diff --git a/_/Gemfile.lock b/Gemfile.lock similarity index 99% rename from _/Gemfile.lock rename to Gemfile.lock index 6940ccaf1..58c684335 100644 --- a/_/Gemfile.lock +++ b/Gemfile.lock @@ -113,3 +113,6 @@ PLATFORMS DEPENDENCIES github-pages + +BUNDLED WITH + 1.10.4 diff --git a/Makefile b/Makefile index c886ea722..6c5f1435f 100644 --- a/Makefile +++ b/Makefile @@ -1,12 +1,11 @@ PORT ?= 3000 -bundle := env BUNDLE_GEMFILE=./_/Gemfile bundle start: bundle - ${bundle} exec jekyll serve --safe --drafts --watch --port ${PORT} + bundle exec jekyll serve --safe --drafts --watch --port ${PORT} build: bundle - ${bundle} exec jekyll build --safe + bundle exec jekyll build --safe bundle: ruby -v - ${bundle} + bundle