aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--activesupport/Rakefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/activesupport/Rakefile b/activesupport/Rakefile
index 235094ec54..5b5fe6dfe5 100644
--- a/activesupport/Rakefile
+++ b/activesupport/Rakefile
@@ -36,8 +36,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
rdoc.rdoc_files.include('README', 'CHANGELOG')
rdoc.rdoc_files.include('lib/active_support.rb')
- rdoc.rdoc_files.include('lib/active_support/*.rb')
- rdoc.rdoc_files.include('lib/active_support/**/*.rb')
+ rdoc.rdoc_files.include(Dir['lib/active_support/**/*.rb'] - Dir['lib/active_support/vendor/**/*.rb'])
}
spec = Gem::Specification.new do |s|