Skip to content

Commit

Permalink
Use native include/exclude instead of doing it by hand
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy committed Jun 19, 2008
1 parent c52d953 commit 6e70573
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion activesupport/Rakefile
Expand Up @@ -36,7 +36,8 @@ 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(Dir['lib/active_support/**/*.rb'] - Dir['lib/active_support/vendor/**/*.rb'])
rdoc.rdoc_files.include('lib/active_support/**/*.rb')
rdoc.rdoc_files.exclude('lib/active_support/vendor/*')
}

spec = Gem::Specification.new do |s|
Expand Down

0 comments on commit 6e70573

Please sign in to comment.