summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDr Nic Williams <drnicwilliams@gmail.com>2009-07-29 08:50:15 +0200
committerDr Nic Williams <drnicwilliams@gmail.com>2009-07-29 08:50:15 +0200
commit053c9677c0248fdde502934e1165ae4fc542798c (patch)
tree37c31522b86c61eca8786271a839ce4bce879300
parent7dd4819107ab2ece01049288d65be5511db65669 (diff)
downloadbundler-053c9677c0248fdde502934e1165ae4fc542798c.tar.gz
remove redundant README file and add README.rdoc into gemspec
-rw-r--r--README0
-rw-r--r--Rakefile4
2 files changed, 2 insertions, 2 deletions
diff --git a/README b/README
deleted file mode 100644
index e69de29bb2..0000000000
--- a/README
+++ /dev/null
diff --git a/Rakefile b/Rakefile
index 134f6d7bd8..6dfc85f366 100644
--- a/Rakefile
+++ b/Rakefile
@@ -14,12 +14,12 @@ spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
- s.extra_rdoc_files = ["README", "LICENSE"]
+ s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
s.bindir = "bin"
s.executables = %w( gem_bundler )
s.require_path = 'lib'
- s.files = %w(LICENSE README Rakefile) + Dir.glob("{bin,lib,spec}/**/*")
+ s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("{bin,lib,spec}/**/*")
end
task :default => :spec