|
NameApp::Sqitch::Role::TargetConfigCommand - A command that handles target-related configurationSynopsispackage App::Sqitch::Command::init; extends 'App::Sqitch::Command'; with 'App::Sqitch::Role::TargetConfigCommand'; DescriptionThis role encapsulates the common attributes and methods required by commands that deal with change script configuration, including script directories and extensions.InterfaceClass Methods"options"my @opts = App::Sqitch::Command::checkout->options; Adds options common to the commands that manage script configuration. "configure" Configures the options common to commands manage script configuration. Attributes"properties"A hash reference of target configurations. The keys may be as follows:
Instance Methods"config_target"my $target = $cmd->config_target; my $target = $cmd->config_target(%params); Constructs a target based on the contents of "properties". The supported parameters are:
The passed target and engine names take highest precedence, falling back on the properties and the "default_target". All other properties are applied to the target before returning it. "write_plan" $cmd->write_plan(%params); Writes out the plan file. Supported parameters are:
"directories_for" my @dirs = $cmd->directories_for(@targets); Returns a set of script directories for a list of targets. Options passed to the command are preferred. Paths are pulled from the command only when they have not been passed as options. "make_directories_for" $cmd->directories_for(@targets); Creates script directories for one or more targets. Options passed to the command are preferred. Paths are pulled from the command only when they have not been passed as options. "mkdirs" $cmd->directories_for(@dirs); Creates the list of directories on the file system. Directories that already exist are skipped. Messages are sent to "info()" for each directory, and an error is thrown on the first to fail. See Also
AuthorDavid E. Wheeler <david@justatheory.com>LicenseCopyright (c) 2012-2015 iovation Inc.Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Visit the GSP FreeBSD Man Page Interface. |