From 3cd1af0c62966a0df9fd92ddac48dc0e1887000f Mon Sep 17 00:00:00 2001 From: Yehuda Katz Date: Mon, 3 Aug 2009 22:48:15 -0700 Subject: Updates Rakefile to depend on rubygems >= 1.3.5 --- Rakefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Rakefile') 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 -- cgit v1.2.1