This commit is contained in:
John Bintz 2012-03-22 09:52:45 -04:00
parent dd2a1c0a5e
commit 81396fa71c
4 changed files with 12 additions and 1 deletions

2
.gitignore vendored
View File

@ -1,4 +1,6 @@
.sass-cache/
Gemfile.lock
_site/
coverage/
tmp/

View File

@ -7,3 +7,4 @@ gem 'foreman'
gem 'guard'
gem 'haml'
gem 'guard-haml'
gem 'guard-compass'

View File

@ -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

View File

@ -1,3 +1,3 @@
compass: compass watch
jekyll: jekyll --server
guard: bundle exec guard