summaryrefslogtreecommitdiff
path: root/Rakefile
diff options
context:
space:
mode:
authorYehuda Katz <wycats@gmail.com>2009-08-03 22:48:15 -0700
committerYehuda Katz <wycats@gmail.com>2009-08-03 22:48:15 -0700
commit3cd1af0c62966a0df9fd92ddac48dc0e1887000f (patch)
treefaed3a8ab7ad9536402111c0d3376b7f836430d1 /Rakefile
parent0785b65f3ebfb14498acd84f4d0b9e4ee7419006 (diff)
downloadbundler-3cd1af0c62966a0df9fd92ddac48dc0e1887000f.tar.gz
Updates Rakefile to depend on rubygems >= 1.3.5
Diffstat (limited to 'Rakefile')
-rw-r--r--Rakefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/Rakefile b/Rakefile
index bf241de175..095f403dfe 100644
--- a/Rakefile
+++ b/Rakefile
@@ -6,7 +6,7 @@ require 'spec/rake/spectask'
spec = Gem::Specification.new do |s|
s.name = "bundler"
- s.version = "0.3.1"
+ s.version = "0.3.2"
s.author = "Yehuda Katz"
s.email = "wycats@gmail.com"
s.homepage = "http://github.com/wycats/bundler"
@@ -16,6 +16,8 @@ spec = Gem::Specification.new do |s|
s.has_rdoc = true
s.extra_rdoc_files = ["README.markdown", "LICENSE"]
+ s.required_rubygems_version = ">= 1.3.5"
+
s.require_path = 'lib'
s.files = %w(LICENSE README.markdown Rakefile) + Dir.glob("lib/**/*")
end