Wrap text
Report abuse
YAML
|
|
---
- path: "lib/recipes"
repo: "ssh://raptor.example.com/capistrano/recipes"
|
Chained syntax
|
|
mirror("lib/recipes").from("ssh://raptor.example.com/capistrano/recipes").using(:mercurial)
|
Multi-line syntax
|
|
mirror("lib/recipes").from("ssh://raptor.example.com/capistrano/recipes")
mirror("lib/recipes").using(:mercurial)
|
Block syntax
|
|
mirror("lib/recipes") do
from("ssh://raptor.example.com/capistrano/recipes")
using(:mercurial)
end
|