summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-07-29 17:36:44 -0700
committerYehuda Katz + Carl Lerche <ykatz+clerche@engineyard.com>2009-07-29 17:36:44 -0700
commit842d98fdfc8d788f529e15f4c011f609020d661e (patch)
treeb8925dad6ff345db6b23f64cd4fb12377ee63c1a
parent9af397bd7923010eed1cf2487c3e4e600e020810 (diff)
downloadbundler-842d98fdfc8d788f529e15f4c011f609020d661e.tar.gz
Update the gem specification builder to point to the new README
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index b629d5e0c2..0b66abf767 100644
--- a/Rakefile
+++ b/Rakefile
@@ -14,10 +14,10 @@ spec = Gem::Specification.new do |s|
s.platform = Gem::Platform::RUBY
s.has_rdoc = true
- s.extra_rdoc_files = ["README.rdoc", "LICENSE"]
+ s.extra_rdoc_files = ["README.markdown", "LICENSE"]
s.require_path = 'lib'
- s.files = %w(LICENSE README.rdoc Rakefile) + Dir.glob("lib/**/*")
+ s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("lib/**/*")
end
task :default => :spec