标签: ruby-on-rails ruby capistrano capistrano3
我在部署命名空间中有这个块:
if :stage != :development then before :check, 'deploy:open' after :restart, 'deploy:close' end
答案 0 :(得分:2)
使用Capistrano 3,您应该使用fetch来获取变量。
fetch
if fetch(:stage) != :development
应该有用。