Skip to content

Commit

Permalink
Merge pull request #226 from anithri/guard_update_for_md_files
Browse files Browse the repository at this point in the history
Changed Guardfile to look for .md files instead of .rdoc :test:
  • Loading branch information
trans committed Apr 8, 2015
2 parents 415fa09 + 2d1d60f commit e263a7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Guardfile
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@ end
group :qed do
guard :qed do
watch('demo/applique/') { 'demo' }
watch(%r{^lib/(.+)/facets/(.+\.rdoc)$}) { |m| "demo/#{m[1]}/#{m[2]}" }
watch(%r{^demo/.+/.+\.rdoc$})
watch(%r{^lib/(.+)/facets/(.+\.md)$}) { |m| "demo/#{m[1]}/#{m[2]}" }
watch(%r{^demo/.+/.+\.md})
end
end

Expand Down

0 comments on commit e263a7a

Please sign in to comment.