diff --git a/documentation/getting-started/configuration/index.markdown b/documentation/getting-started/configuration/index.markdown index 6d3e2fc6..be3636a3 100644 --- a/documentation/getting-started/configuration/index.markdown +++ b/documentation/getting-started/configuration/index.markdown @@ -23,7 +23,6 @@ set :application, 'MyLittleApplication' set :application, -> { "SomeThing_#{fetch :other_config}" } ``` - A value can be retrieved from the configuration at any time: ```ruby @@ -34,6 +33,12 @@ fetch(:special_thing, 'some_default_value') # will return the value if set, or the second argument as default value ``` +**New in Capistrano 3.5:** for a variable that holds an Array, easily add values to it using `append`. This comes in especially handy for `:linked_dirs` and `:linked_files` (see Variables reference below). + +```ruby +append :linked_dirs, ".bundle", "tmp" +``` + ## Variables The following variables are settable: