Sha256: 989270d58fb9760540ecbc522789d3560583f2c195862f44d838c2f9c472b89b
Contents?: true
Size: 394 Bytes
Versions: 28
Compression:
Stored size: 394 Bytes
Contents
# Run me with: # # $ watchr docs.watchr def run_rdoc system('rake --silent rdoc') end def run_yard print "\nUpdating yardocs... " system('rake --silent yardoc') print "done.\n" end def document run_rdoc run_yard end watch( 'lib/.*\.rb' ) { document } watch( 'README.rdoc' ) { document } watch( 'TODO.txt' ) { document } watch( 'LICENSE' ) { document } # vim:ft=ruby
Version data entries
28 entries across 28 versions & 5 rubygems