From 056db339066c6b566b4cfab0a30845d3f72cbc3e Mon Sep 17 00:00:00 2001 From: Jamis Buck Date: Fri, 30 May 2008 13:20:37 -0600 Subject: rename README to README.rdoc. Also update the Rakefile and gemspecs to reference the new CHANGELOG.rdoc README.rdoc. --- sqlite3-ruby.gemspec | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'sqlite3-ruby.gemspec') diff --git a/sqlite3-ruby.gemspec b/sqlite3-ruby.gemspec index 4fe75be..ac8f000 100644 --- a/sqlite3-ruby.gemspec +++ b/sqlite3-ruby.gemspec @@ -10,16 +10,15 @@ Gem::Specification.new do |s| s.summary = "SQLite3/Ruby is a module to allow Ruby scripts to interface with a SQLite3 database." s.files = Dir.glob("{doc,ext,lib,test}/**/*") - s.files.concat [ "LICENSE", "README", "ChangeLog" ] + s.files.concat [ "LICENSE", "README.rdoc", "CHANGELOG.rdoc" ] s.require_path = 'lib' - s.autorequire = 'sqlite3' s.extensions << 'ext/sqlite3_api/extconf.rb' s.has_rdoc = true - s.extra_rdoc_files = [ "README" ] - s.rdoc_options = [ "--main", "README" ] + s.extra_rdoc_files = [ "README.rdoc" ] + s.rdoc_options = [ "--main", "README.rdoc" ] s.test_suite_file = "test/tests.rb" -- cgit