about summary refs log tree commit homepage
path: root/projects/gem_plugin/Rakefile
diff options
context:
space:
mode:
authorzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-03-10 06:46:45 +0000
committerzedshaw <zedshaw@19e92222-5c0b-0410-8929-a290d50e31e9>2006-03-10 06:46:45 +0000
commite0d06cdcb71a8b3bffefbe2ef5c44ced8287086d (patch)
tree5035fcc554cc4bac0c9ae73b07a3b36ac79509fb /projects/gem_plugin/Rakefile
parent0fb0a0f09723c4b55bbd5ff6935ccdafe266b156 (diff)
downloadunicorn-e0d06cdcb71a8b3bffefbe2ef5c44ced8287086d.tar.gz
git-svn-id: svn+ssh://rubyforge.org/var/svn/mongrel/trunk@92 19e92222-5c0b-0410-8929-a290d50e31e9
Diffstat (limited to 'projects/gem_plugin/Rakefile')
-rw-r--r--projects/gem_plugin/Rakefile15
1 files changed, 7 insertions, 8 deletions
diff --git a/projects/gem_plugin/Rakefile b/projects/gem_plugin/Rakefile
index b5a278e..2066b60 100644
--- a/projects/gem_plugin/Rakefile
+++ b/projects/gem_plugin/Rakefile
@@ -15,15 +15,14 @@ setup_rdoc ['README', 'LICENSE', 'COPYING', 'lib/**/*.rb', 'doc/**/*.rdoc']
 desc "Does a full compile, test run"
 task :default => [:test, :package]
 
-version="0.2"
-summary = "A plugin system based only on rubygems"
-test_file = "test/test_plugins.rb"
-author="Zed A. Shaw"
-name="gem_plugin"
-scripts=[]
+version = "0.2"
 
-setup_gem(name, version,  author, summary, scripts, test_file) do |spec|
-  spec.description = summary
+setup_gem("gem_plugin", version) do |spec|
+  spec.author="Zed A. Shaw"
+  spec.summary = "A plugin system based only on rubygems that uses dependencies only"
+  spec.description = spec.summary
+  spec.test_file = "test/test_plugins.rb"
+  scripts=[]
 end
 
 task :gem_test => [:package] do