1
0
Fork 0
mirror of https://github.com/capistrano/capistrano synced 2023-03-27 23:21:18 -04:00
capistrano/spec
Lee Hambley b56206e9ce Implement extended server syntax.
This syntax allows servers to be specified long-hand including properties.

The `role(:my_role, %w{example.com, example.org})` is convenient for batch
set-up of servers; but as SSHKit provides arbirtary properties on servers, it
might be handy to set up servers in long hand:

    server('example.com', roles: :my_role, my_property: "my_value")
    server('example.com', roles: [:my_role, :another], my_property: "my_value")
    server('example.com', roles: :my_role, primary: true)

This commit adds the ability to do this.
2013-05-28 12:10:21 +02:00
..
lib Implement extended server syntax. 2013-05-28 12:10:21 +02:00
spec_helper.rb installation - running cap install capifies app 2013-02-01 14:51:50 +00:00