Skip to content

Instantly share code, notes, and snippets.

Created August 16, 2013 01:03
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/6246366 to your computer and use it in GitHub Desktop.
Save anonymous/6246366 to your computer and use it in GitHub Desktop.
Guard + LiveReload + Compass + Foundation = <3
source "http://rubygems.org"
group :development do
gem 'sass'
gem 'compass'
gem 'compass-validator'
gem 'css_parser'
gem 'guard'
gem 'guard-compass'
gem 'guard-shell'
gem 'guard-livereload'
gem 'zurb-foundation'
end
# I used this file for a Clojure project. It serves as an example Guardfile.
# To start from scratch, add the Gemfile above to your root directory and run
# 'bundle install' then 'guard init livereload' and 'guard init compass'
guard 'livereload' do
watch(%r{src/clj/.+\.clj})
watch(%r{resources/public/.+\.(css|js|html)})
end
guard :compass,
:project_path => 'resources/public/main',
:configuration_file => 'resources/public/main/config.rb'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment