summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Rakefile b/Rakefile
index acfd5cf..e27f00a 100644
--- a/Rakefile
+++ b/Rakefile
@@ -32,7 +32,7 @@ RUBYFORGE_USER = ENV['RUBYFORGE_USER']
TEST_FILES = Dir.glob('test/test_*').delete_if { |item| item.include?( "\.svn" ) }
TEST_ASSETS = Dir.glob('test/assets/*').delete_if { |item| item.include?( "\.svn" ) }
LIB_FILES = Dir.glob('lib/**/*').delete_if { |item| item.include?( "\.svn" ) }
-RELEASE_FILES = [ "Rakefile", "README", "LICENSE", "docs/USAGE" ] + LIB_FILES + TEST_FILES + TEST_ASSETS
+RELEASE_FILES = [ "Rakefile", "README.rdoc", "LICENSE", "docs/USAGE" ] + LIB_FILES + TEST_FILES + TEST_ASSETS
task :default => [ :test ]
# Run the unit tests
@@ -107,9 +107,9 @@ end
Rake::RDocTask.new { |rdoc|
rdoc.rdoc_dir = 'rdoc'
rdoc.title = "All-purpose Property List manipulation library"
- rdoc.options << '-SNmREADME'
+ rdoc.options << '-SNmREADME.rdoc'
rdoc.template = "docs/jamis-template.rb"
- rdoc.rdoc_files.include('README', 'LICENSE', 'CHANGELOG')
+ rdoc.rdoc_files.include('README.rdoc', 'LICENSE', 'CHANGELOG')
rdoc.rdoc_files.include Dir.glob('docs/**').delete_if {|f| f.include? 'jamis' }
rdoc.rdoc_files.include('lib/**')
}