Skip to content

Instantly share code, notes, and snippets.

@xendk
Created November 18, 2013 08:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save xendk/7524471 to your computer and use it in GitHub Desktop.
Save xendk/7524471 to your computer and use it in GitHub Desktop.
# A sample Guardfile
# More info at https://github.com/guard/guard#readme
ignore %r{_flymake\.}
ignore %r{\.#}
guard 'livereload' do
watch(%r{\.(css|js|html)})
end
# Guard::Compass
#
# You don't need to configure watchers for guard 'compass' declaration as they generated
# from your Compass configuration file. You might need to define the Compass working directory
# and point to the configuration file depending of your project structure.
#
# Available options:
#
# * working_directory: Define the Compass working directory, relative to the Guardfile directory
# * configuration_file: Path to the Compass configuration file, relative to :project_path
#
# Like usual, the Compass configuration path are relative to the :project_path
guard 'compass', project_path: 'themes/antennemast', configuration_file: 'themes/antennemast/config/compass.rb'
guard :compass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment