Capistranoのbefore_**, after_**タスクがDeprecatedになっているので修正

Capistrano起動したらこんな文言が。

[Deprecation Warning] Naming tasks with before_ and after_ is deprecated, please see the new before() and after() methods.
 (Offending task name was after_symlink)

Deprecatedになったらしいので修正しなくては。
古いプロジェクトで問題になった場合を考えて対応策をメモ。

変更前

  task :after_symlink, :roles => [:app] do     

変更後 (namescopeはフルで書くべき)

  after "deploy:symlink", :roles => [:app] do