Skip to content

Instantly share code, notes, and snippets.

@leopic
Created November 9, 2013 16:52
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 leopic/7387350 to your computer and use it in GitHub Desktop.
Save leopic/7387350 to your computer and use it in GitHub Desktop.
group :desktop do
guard 'livereload' do
watch(%r{desktop/.+\.html})
end
end
group :mobile do
guard 'livereload' do
watch(%r{mobile/.+\.html})
end
end
group :mobile, :desktop do
guard 'livereload' do
watch(%r{both/.+\.html})
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment