Swap out Makefile for a Rakefile

This commit is contained in:
2018-02-28 01:53:00 +00:00
parent ca374475da
commit 98ee335065
4 changed files with 11 additions and 6 deletions

View File

@@ -1,3 +1,7 @@
source 'https://rubygems.org/'
gem 'github-pages'
group :development do
gem 'rake'
end

View File

@@ -114,6 +114,7 @@ GEM
ffi (>= 0.5.0)
rdiscount (2.1.7)
redcarpet (3.3.2)
rake (12.3.0)
safe_yaml (1.0.4)
sass (3.4.22)
sawyer (0.8.1)
@@ -136,6 +137,7 @@ PLATFORMS
DEPENDENCIES
github-pages
rake
BUNDLED WITH
1.13.6
1.16.1

View File

@@ -1,5 +0,0 @@
serve:
bundle exec jekyll serve
.SILENT:
.PHONY:

4
Rakefile Normal file
View File

@@ -0,0 +1,4 @@
desc 'Run jekyll server'
task :serve do
exec 'bundle exec jekyll serve --incremental'
end