Skip to content

Commit

Permalink
Change strings to regular expressions
Browse files Browse the repository at this point in the history
  • Loading branch information
kelsin committed Aug 4, 2011
1 parent 3a11aea commit 8b9ebe4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/guard/jammit/templates/Guardfile
@@ -1,4 +1,4 @@
guard 'jammit' do
watch('^public/javascripts/(.*)\.js')
watch('^public/stylesheets/(.*)\.css')
end
watch(%r{^public/javascripts/(.*)\.js$})
watch(%r{^public/stylesheets/(.*)\.css$})
end

0 comments on commit 8b9ebe4

Please sign in to comment.