Rakefile in hobo_support-1.3.0.pre12 vs Rakefile in hobo_support-1.3.0.pre13
- old
+ new
@@ -8,9 +8,9 @@
RUBYDOCTEST = ENV['RUBYDOCTEST'] || "#{RUBY} -S rubydoctest"
namespace "test" do
desc "Run the doctests"
task :doctest do |t|
- files=Dir['test/*.rdoctest','test/hobo_support/*.rdoctest'].map {|f| File.expand_path(f)}.join(' ')
+ files=Dir['test/**/*.rdoctest'].map {|f| File.expand_path(f)}.join(' ')
exit(1) if !system("#{RUBYDOCTEST} --single #{files}")
end
end