test/
Gemfile
Gemfile.lock
Guardfile
assets/
test/
test.xcodeproj
www/
exec guard
hamlをjadeとかにしたいんだけどguard-jadeが無いので諦めたやつ
test/
Gemfile
Gemfile.lock
Guardfile
assets/
test/
test.xcodeproj
www/
exec guard
hamlをjadeとかにしたいんだけどguard-jadeが無いので諦めたやつ
source 'http://rubygems.org' | |
gem 'guard' | |
gem 'guard-less' | |
gem 'guard-haml' | |
gem 'guard-coffeescript' | |
gem 'rb-fsevent' | |
gem 'growl' |
guard 'haml', :output => 'www', :input => 'assets/haml' do | |
watch %r{^assets/haml/.+(\.html\.haml)} | |
end | |
guard :less, :output => 'www/css' do | |
watch %r{^assets/less/.+\.less} | |
end | |
guard :coffeescript, :output => 'www/js' do | |
watch %r{^assets/coffee/.+\.coffee} | |
end |