Module Capistrano::Configuration::Loading
In: lib/capistrano/configuration/loading.rb

Methods

load  

Classes and Modules

Module Capistrano::Configuration::Loading::ClassMethods

Attributes

load_paths  [R]  The load paths used for locating recipe files.

Public Instance methods

Load a configuration file or string into this configuration.

Usage:

  load("recipe"):
    Look for and load the contents of 'recipe.rb' into this
    configuration.

  load(:file => "recipe"):
    same as above

  load(:string => "set :scm, :subversion"):
    Load the given string as a configuration specification.

  load { ... }
    Load the block in the context of the configuration.

[Validate]