From 32f8d665e22307654284d5d0eab6242594631d42 Mon Sep 17 00:00:00 2001 From: Jonas Nicklas Date: Thu, 19 Mar 2009 21:45:53 +0100 Subject: [PATCH] README is now .rdoc, not .md --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 3ea60bd7..b0b6a024 100644 --- a/Rakefile +++ b/Rakefile @@ -20,14 +20,14 @@ spec = Gem::Specification.new do |s| s.version = GEM_VERSION s.platform = Gem::Platform::RUBY s.has_rdoc = true - s.extra_rdoc_files = ["README.md", "LICENSE", 'TODO'] + s.extra_rdoc_files = ["README.rdoc", "LICENSE", 'TODO'] s.summary = SUMMARY s.description = s.summary s.author = AUTHOR s.email = EMAIL s.homepage = HOMEPAGE s.require_path = 'lib' - s.files = %w(LICENSE Generators README.md Rakefile TODO) + Dir.glob("{lib,spec,rails_generators}/**/*") + s.files = %w(LICENSE Generators README.rdoc Rakefile TODO) + Dir.glob("{lib,spec,rails_generators}/**/*") end