Capistrano でタスクを超えて変数を保持する方法
2689 ワード
deploy.rb
self[:variable:] = variable
カピストラノさん難しいよカピストラノさん
ちなみに
current_path
shared_path
release_path
は deploy_to
を遅延評価しパスを作成しているので
deploy.rb
self[:is_development] = false
set user, "eccyan"
set application, "ikemen"
set deploy_to, do
if self[:is_development]
"/var/www/http/#{user}/#{application}"
else
"/var/www/http/#{application}"
end
end
task :development do
self[:is_development] = true
puts current_path #=> "/var/www/http/eccyan/ikemen"
end
task :production do
self[:is_development] = false
puts current_path #=> "/var/www/http/ikemen"
end
みたいな事が出来る。
Author And Source
この問題について(Capistrano でタスクを超えて変数を保持する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/eccyan/items/5b077a76fe3dae201dd5著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .