Created
July 27, 2015 22:57
-
-
Save egardner/dfa143720858173eee74 to your computer and use it in GitHub Desktop.
Jekyll Livereload options
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Using Proteus-Jekyll gems here | |
source 'https://rubygems.org' | |
gem 'bourbon' | |
gem 'coffee-script' | |
gem 'jekyll' | |
gem 'jekyll-assets' | |
gem 'jekyll-haml' | |
gem 'neat' | |
gem 'sass' | |
gem 'uglifier' | |
# Livereload | |
gem 'guard' | |
gem 'guard-jekyll-plus' | |
gem 'guard-livereload' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guard 'jekyll-plus', :serve => true do | |
watch /.*/ | |
ignore /^_site/ | |
end | |
guard 'livereload' do | |
watch /.*/ | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment