From 81396fa71c97ecd55c7f9fc7c3994d2385ebace6 Mon Sep 17 00:00:00 2001 From: John Bintz Date: Thu, 22 Mar 2012 09:52:45 -0400 Subject: [PATCH] tweaks --- .gitignore | 2 ++ Gemfile | 1 + Guardfile | 8 ++++++++ Procfile | 2 +- 4 files changed, 12 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 0f22617..072cc68 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,6 @@ .sass-cache/ Gemfile.lock _site/ +coverage/ +tmp/ diff --git a/Gemfile b/Gemfile index a50670b..a049656 100644 --- a/Gemfile +++ b/Gemfile @@ -7,3 +7,4 @@ gem 'foreman' gem 'guard' gem 'haml' gem 'guard-haml' +gem 'guard-compass' diff --git a/Guardfile b/Guardfile index 12d36fd..185f83e 100644 --- a/Guardfile +++ b/Guardfile @@ -1,3 +1,11 @@ # A sample Guardfile # More info at https://github.com/guard/guard#readme + +guard 'compass' do + watch('^sass/(.*)\.s[ac]ss') +end + +guard 'haml' do + watch(/^.+(\.html\.haml)/) +end diff --git a/Procfile b/Procfile index 23f5a22..39a11f0 100644 --- a/Procfile +++ b/Procfile @@ -1,3 +1,3 @@ -compass: compass watch jekyll: jekyll --server +guard: bundle exec guard