阅读更多

5顶
0踩

编程语言

原创新闻 Rails部署工具Capistrano 2.2.0发布

2008-02-28 14:34 by 见习编辑 robbin 评论(0) 有3941人浏览
Capistrano是Rails项目的自动部署和管理工具,发布了2.2.0版本。安装方式:

gem install capistrano

2.2.0版本添加了一些新的特性:

可以动态定义角色:

role :app do
  hosts = some_method_that_looks_up_the_current_hosts
  hosts[0,3]
end


可以定义部署的服务器数量的上限,避免因为网络链接问题导致的部署挂起

task :ping, :max_hosts => 100 do
  # anything here will only run against 100 hosts at a time
end


还有其他的功能支持,例如支持Git源代码管理系统
5
0
评论 共 0 条 请登录后发表评论

发表评论

您还没有登录,请您登录后再发表评论

相关推荐

Global site tag (gtag.js) - Google Analytics