From 0dd7ea2ae0ad699034b8fd2fe87f180c9cea33e7 Mon Sep 17 00:00:00 2001 From: Bryan Helmkamp Date: Tue, 18 Nov 2008 22:17:11 -0500 Subject: [PATCH] Remove references to deleted TODO.txt --- Rakefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index a97d4e5..ff0a86e 100644 --- a/Rakefile +++ b/Rakefile @@ -21,7 +21,7 @@ spec = Gem::Specification.new do |s| s.bindir = "bin" s.description = s.summary s.require_path = "lib" - s.files = %w(History.txt init.rb install.rb MIT-LICENSE.txt README.txt Rakefile TODO.txt) + Dir["lib/**/*"] + s.files = %w(History.txt init.rb install.rb MIT-LICENSE.txt README.txt Rakefile) + Dir["lib/**/*"] # rdoc s.has_rdoc = true @@ -81,7 +81,6 @@ Rake::RDocTask.new(:docs) do |rd| rd.main = "README.txt" rd.rdoc_dir = 'doc' files = spec.files.grep(/^(lib|bin|ext)|txt$/) - files -= ["TODO.txt"] files -= files.grep(/\.js$/) rd.rdoc_files = files.uniq title = "webrat-#{Webrat::VERSION} Documentation"