1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00

Add :clean task, and bump capistrano version

git-svn-id: http://svn.rubyonrails.org/rails/tools/capistrano@4569 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
Jamis Buck 2006-07-06 14:22:30 +00:00
parent 460a15ea98
commit 04c9361a2e
2 changed files with 6 additions and 1 deletions

View file

@ -47,3 +47,8 @@ task :pgem => [:package] do
Rake::SshFilePublisher.new("davidhh@wrath.rubyonrails.org", "public_html/gems/gems", "pkg", "#{PKG_FILE_NAME}.gem").upload
`ssh davidhh@wrath.rubyonrails.org './gemupdate.sh'`
end
desc "Clean up generated directories and files"
task :clean do
rm_rf "pkg"
end

View file

@ -19,7 +19,7 @@ module Capistrano
end
MAJOR = 1
MINOR = 1
MINOR = 2
TINY = 0
STRING = [MAJOR, MINOR, TINY].join(".")