Capistrano 2.2.0
Posted by jamis February 28, 2008 @ 04:15 AM
Capistrano is a utility for managing remote servers and automating remote tasks. It is popularly used to deploy Rails applications (but can do oh, so much more!). Version 2.2.0 is now available (well, it’s released, anyway, you might need to wait for the file to propagate to the gem mirrors).
gem install capistrano
Version 2.2.0 sports the following changes:
FEATURE: Dynamic role definition. The role() method now accepts a block, which should return either a host name, a Capistrano::ServerDefinition object, an array of host names, or an array of Capistrano::ServerDefinition objects. This can be used to describe the servers in a role at runtime.
role :app do hosts = some_method_that_looks_up_the_current_hosts hosts[0,3] end
FEATURE: Alternative server-centric role definitions, using the server() method:
role :app, "server" role :web, "server" # the above is the same as this: server "server", :app, :web
FEATURE: Support for a :max_hosts option in tasks, that restricts the task so that it is only executed in
task :ping, :max_hosts => 100 do # anything here will only run against 100 hosts at a time end # alternatively, you can pass :max_hosts to the run command itself for # finer granularity task :pong do # this will run on ALL hosts at once run "something" # this will run on no more than 100 hosts at a time run "something-else", :max_hosts => 100 end
ENHANCEMENT: Improved Git support!
ENHANCEMENT: Password prompt support in the Mercurial SCM.
ENHANCEMENT: Implement Bzr#next_revision so that pending changes can be reported correctly, and use checkout—lightweight instead of branch.
ENHANCEMENT: Bring back the :p4sync_flags and :p4client_root variables for perforce SCM.
Additionally, there are several minor bugs and typos that have been fixed. You can see the CHANGELOG for all the gory details.
As ever, please report bugs via the Rails trac, at http://dev.rubyonrails.org. And if you aren’t yet subscribed to the Capistrano mailing list, it’s where all the cool cappists hang out.
WOW …This are great News.but im not a friend of linux, i prefer windows. Can anybody tell me? why dont work capistrano on windows based Servers?or if anybody has a idea to make it posible … please tell me or paste a link here. Thanksss
Louis,
Actually it could work on windows servers. You just need ssh. Try to google and you’ll find many ssh implementations for windows (not sure what would you like to use, but I’m sure it is possible).
Good work Jamis! I’ve very happy about the dynamic role definition as I was rolling my own way of doing that before. I’ll be having a great time today cleaning up my recipes and deploy strategies today to take advantage of the goodness in this release.
I saw the mention in the last ADC mailer. What a great app. I just gave it a try on my server at Macminicolo.net and it worked like a charm.
thanks for this app. I am just starting out and had some trouble because of a lack of documentation for capistrano. but now i figured it out and works like a charm on my server