tdoc 0.7.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- data/bin/tdoc.rb +1 -1
- metadata +1 -1
data/bin/tdoc.rb
CHANGED
@@ -13,7 +13,7 @@ DEFAULT_FILE="README#{EXTENSIONS[:tests]}"
|
|
13
13
|
def process(file) #called at end of script
|
14
14
|
files=Dir.glob(file)
|
15
15
|
if files.count > 1
|
16
|
-
files.each {|f| system("#{$PROGRAM_NAME} #{f}")}
|
16
|
+
files.each {|f| system("#{$PROGRAM_NAME} #{f} #{ARGV}")}
|
17
17
|
else
|
18
18
|
mk_test_context(files[0])
|
19
19
|
end
|