mirror of
https://github.com/capistrano/capistrano
synced 2023-03-27 23:21:18 -04:00
quiet deploy task, update TODO
This commit is contained in:
parent
b1aea6c8c4
commit
1864d0e812
2 changed files with 2 additions and 7 deletions
|
@ -18,6 +18,8 @@ TODO:
|
|||
- [x] before/after task hooks
|
||||
- [x] handle multi stage
|
||||
- [x] pass any necessary configuration from deploy.rb to SSHKit
|
||||
- [ ] more helpful DSL
|
||||
- [ ] abstract some useful sshkit commands
|
||||
- [ ] is Capfile still legit? (although capfile/capfile.rb are already alternatives by default)
|
||||
- [ ] add examples to README
|
||||
|
||||
|
|
|
@ -13,37 +13,30 @@ namespace :deploy do
|
|||
|
||||
desc "starting"
|
||||
task :starting do
|
||||
puts t(:starting)
|
||||
end
|
||||
|
||||
desc "start"
|
||||
task :start do
|
||||
puts t(:start)
|
||||
end
|
||||
|
||||
desc "update"
|
||||
task :update do
|
||||
puts t(:update)
|
||||
end
|
||||
|
||||
desc "finalize"
|
||||
task :finalize do
|
||||
puts t(:finalize)
|
||||
end
|
||||
|
||||
desc "restart"
|
||||
task :restart do
|
||||
puts t(:restart)
|
||||
end
|
||||
|
||||
desc "finishing"
|
||||
task :finishing do
|
||||
puts t(:finishing)
|
||||
end
|
||||
|
||||
desc "finished"
|
||||
task :finished do
|
||||
puts t(:finished)
|
||||
end
|
||||
|
||||
before :starting, :ensure_stage do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue