about summary refs log tree commit homepage
path: root/projects/gem_plugin/Rakefile
diff options
context:
space:
mode:
Diffstat (limited to 'projects/gem_plugin/Rakefile')
-rw-r--r--projects/gem_plugin/Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/projects/gem_plugin/Rakefile b/projects/gem_plugin/Rakefile
index bc53ef1..b5a278e 100644
--- a/projects/gem_plugin/Rakefile
+++ b/projects/gem_plugin/Rakefile
@@ -15,7 +15,7 @@ setup_rdoc ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc']
 desc "Does a full compile, test run"
 task :default => [:test, :package]
 
-version="0.1"
+version="0.2"
 summary = "A plugin system based only on rubygems"
 test_file = "test/test_plugins.rb"
 author="Zed A. Shaw"
@@ -23,7 +23,7 @@ name="gem_plugin"
 scripts=[]
 
 setup_gem(name, version,  author, summary, scripts, test_file) do |spec|
-  spec.autorequire = "gem_plugin"
+  spec.description = summary
 end
 
 task :gem_test => [:package] do