Skip to content

Instantly share code, notes, and snippets.

@egardner
Created July 27, 2015 22:57
Show Gist options
  • Save egardner/dfa143720858173eee74 to your computer and use it in GitHub Desktop.
Save egardner/dfa143720858173eee74 to your computer and use it in GitHub Desktop.
Jekyll Livereload options
# 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'
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