From af81a55f39c0c3b5533b3381cac283e917ca91b5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jo=C3=A3o=20T=C3=A1vora?= Date: Sun, 26 Feb 2012 20:44:59 +0000 Subject: [PATCH] TODO: implement Rakefile :release task! --- Rakefile | 15 ++------------- 1 file changed, 2 insertions(+), 13 deletions(-) diff --git a/Rakefile b/Rakefile index 349b773..9d8be28 100644 --- a/Rakefile +++ b/Rakefile @@ -35,19 +35,8 @@ task :package do end desc "create a release package and upload it to google code" -task :release => [:bundle, :package, 'doc:archive'] do - sh "googlecode_upload.py -s \"YASnippet Release #{$version}\"" + - " -p yasnippet -l \"Featured,Type-Package,OpSys-All\"" + - " pkg/yasnippet-#{$version}.tar.bz2" - sh "googlecode_upload.py -s \"YASnippet Bundle #{$version}\"" + - " -p yasnippet -l \"Featured,Type-Package,OpSys-All\"" + - " pkg/yasnippet-bundle-#{$version}.el.tgz" - sh "googlecode_upload.py -s \"YASnippet Document #{$version}\"" + - " -p yasnippet -l \"Featured,Type-Docs,OpSys-All\"" + - " pkg/yasnippet-doc-#{$version}.tar.bz2" - FileUtils.cp "yasnippet-bundle.el", "pkg/yasnippet-bundle-#{$version}.el" - sh "echo for ELPA | mutt -a pkg/yasnippet-bundle-#{$version}.el -s " + - "'YASnippet bundle v#{$version}' elpa@tromey.com" +task :release => [:package, 'doc:archive'] do + raise "Not implemented for github yet!" end rule '.html' => '.rst' do |t|