aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRick Olson <technoweenie@gmail.com>2006-12-19 14:59:30 +0000
committerRick Olson <technoweenie@gmail.com>2006-12-19 14:59:30 +0000
commit32bc10d7df032747c463840f63c8adea7bbfda58 (patch)
tree4b0c818f8e3540d716e881597725a376232752ee
parente7c2c7982f25edcc359a3d6753bf41def1fc161e (diff)
downloadrails-32bc10d7df032747c463840f63c8adea7bbfda58.tar.gz
rails-32bc10d7df032747c463840f63c8adea7bbfda58.tar.bz2
rails-32bc10d7df032747c463840f63c8adea7bbfda58.zip
fix Rakefile so that the rdoc can be generated
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@5747 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
-rw-r--r--activeresource/Rakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/activeresource/Rakefile b/activeresource/Rakefile
index c56c33a56a..033789481e 100644
--- a/activeresource/Rakefile
+++ b/activeresource/Rakefile
@@ -41,7 +41,7 @@ Rake::RDocTask.new { |rdoc|
rdoc.title = "Active Resource -- Object-oriented REST services"
rdoc.options << '--line-numbers' << '--inline-source' << '-A cattr_accessor=object'
rdoc.template = "#{ENV['template']}.rb" if ENV['template']
- rdoc.rdoc_files.include('README', 'RUNNING_UNIT_TESTS', 'CHANGELOG')
+ rdoc.rdoc_files.include('README', 'CHANGELOG')
rdoc.rdoc_files.include('lib/**/*.rb')
rdoc.rdoc_files.exclude('lib/active_record/vendor/*')
rdoc.rdoc_files.include('dev-utils/*.rb')