From 98b466ee3cc0ec5ee65b8672990f2663900be20a Mon Sep 17 00:00:00 2001 From: Max Aller Date: Wed, 21 May 2008 08:47:29 -0700 Subject: [PATCH] Change VERSION to defined constant GEM_VERSION so gem gets installed correctly. --- .../app_generators/merb_plugin/templates/Rakefile | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/merb-gen/app_generators/merb_plugin/templates/Rakefile b/merb-gen/app_generators/merb_plugin/templates/Rakefile index 4f29252..ac70a31 100644 --- a/merb-gen/app_generators/merb_plugin/templates/Rakefile +++ b/merb-gen/app_generators/merb_plugin/templates/Rakefile @@ -35,7 +35,7 @@ end desc "install the plugin locally" task :install => [:package] do - sh %{#{sudo} gem install pkg/#{NAME}-#{VERSION} --no-update-sources} + sh %{#{sudo} gem install pkg/#{NAME}-#{GEM_VERSION} --no-update-sources} end desc "create a gemspec file" -- 1.5.4.3