Added guard-ronn (to build manual automatically).

This commit is contained in:
Rémy Coutable 2011-08-11 12:10:08 +02:00
parent bcbcf61390
commit 118e8ff167
2 changed files with 9 additions and 1 deletions

View File

@ -4,6 +4,10 @@ gemspec
gem 'rake' gem 'rake'
group :guard do
gem 'guard-ronn'
end
require 'rbconfig' require 'rbconfig'
if RbConfig::CONFIG['target_os'] =~ /darwin/i if RbConfig::CONFIG['target_os'] =~ /darwin/i

View File

@ -16,4 +16,8 @@ end
# #
# group "exceptional" do # group "exceptional" do
# guard :breaking # guard :breaking
# end # end
guard 'ronn' do
watch(%r{^man/.+\.m(ark)?d(own)?$})
end