mynyml-watchr 0.3.0 → 0.5.2

Sign up to get free protection for your applications and to get access to all the features.
data/rdoc.watchr DELETED
@@ -1,15 +0,0 @@
1
- # Run me with:
2
- #
3
- # $ watchr docs.watchr
4
-
5
- run_rdoc = lambda { system('rake --silent rdoc') }
6
-
7
- watch( '(lib|bin)/.*\.rb', &run_rdoc )
8
- watch( 'README.rdoc', &run_rdoc )
9
- watch( 'TODO.txt', &run_rdoc )
10
- watch( 'LICENSE', &run_rdoc )
11
-
12
-
13
-
14
-
15
- # vim:ft=ruby
data/yard.watchr DELETED
@@ -1,18 +0,0 @@
1
- # Run me with:
2
- #
3
- # $ watchr docs-yard.watchr
4
-
5
- def run_yard
6
- print "Updating yardocs... "
7
- system('yardoc -o doc/yard --readme README.rdoc --files LICENSE')
8
- print "done.\n"
9
- end
10
-
11
- watch( '^(lib|bin)/.*\.rb' ) { run_yard }
12
- watch( '^README.rdoc' ) { run_yard }
13
- watch( '^LICENSE' ) { run_yard }
14
-
15
-
16
-
17
-
18
- # vim:ft=ruby