Skip to content

Commit

Permalink
Robo release 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed May 30, 2017
1 parent 410f9b9 commit 5e6b1ef
Show file tree
Hide file tree
Showing 12 changed files with 63 additions and 58 deletions.
4 changes: 2 additions & 2 deletions docs/tasks/ApiGen.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,6 @@ $this->taskApiGen('./vendor/apigen/apigen.phar')
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

4 changes: 2 additions & 2 deletions docs/tasks/Base.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ if ($this->taskExec('phpunit .')->run()->wasSuccessful()) {
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## ExecStack

Expand Down
8 changes: 4 additions & 4 deletions docs/tasks/Bower.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ $this->taskBowerInstall('path/to/my/bower')
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Update

Expand All @@ -53,6 +53,6 @@ $this->taskBowerUpdate('path/to/my/bower')
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

25 changes: 15 additions & 10 deletions docs/tasks/Composer.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,13 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')
* `noAnsi()` adds `no-ansi` option to composer
* `ansi()` adds `ansi` option to composer
* `optimizeAutoloader()` adds `optimize-autoloader` option to composer
* `ignorePlatformRequirements()` adds `ignore-platform-reqs` option to composer
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Install

Expand Down Expand Up @@ -70,12 +71,13 @@ $this->taskComposerInstall('path/to/my/composer.phar')
* `noAnsi()` adds `no-ansi` option to composer
* `ansi()` adds `ansi` option to composer
* `optimizeAutoloader()` adds `optimize-autoloader` option to composer
* `ignorePlatformRequirements()` adds `ignore-platform-reqs` option to composer
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Remove

Expand All @@ -100,12 +102,13 @@ $this->taskComposerValidate()->run();
* `noAnsi()` adds `no-ansi` option to composer
* `ansi()` adds `ansi` option to composer
* `optimizeAutoloader()` adds `optimize-autoloader` option to composer
* `ignorePlatformRequirements()` adds `ignore-platform-reqs` option to composer
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Update

Expand Down Expand Up @@ -135,12 +138,13 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
* `noAnsi()` adds `no-ansi` option to composer
* `ansi()` adds `ansi` option to composer
* `optimizeAutoloader()` adds `optimize-autoloader` option to composer
* `ignorePlatformRequirements()` adds `ignore-platform-reqs` option to composer
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Validate

Expand All @@ -165,10 +169,11 @@ $this->taskComposerValidate()->run();
* `noAnsi()` adds `no-ansi` option to composer
* `ansi()` adds `ansi` option to composer
* `optimizeAutoloader()` adds `optimize-autoloader` option to composer
* `ignorePlatformRequirements()` adds `ignore-platform-reqs` option to composer
* `dir($dir)` Changes working directory of command
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

4 changes: 2 additions & 2 deletions docs/tasks/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -228,8 +228,8 @@ $this->taskServer(8000)
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## SemVer

Expand Down
32 changes: 16 additions & 16 deletions docs/tasks/Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ Class Build
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Commit

Expand Down Expand Up @@ -54,8 +54,8 @@ $task->dockerCommit($result)
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Exec

Expand Down Expand Up @@ -89,8 +89,8 @@ $this->taskDockerExec($test)
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Pull

Expand All @@ -110,8 +110,8 @@ $this->taskDockerPull('wordpress')
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Remove

Expand All @@ -130,8 +130,8 @@ $this->taskDockerRemove($container)
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.


## Run
Expand Down Expand Up @@ -195,8 +195,8 @@ $this->taskDockerRun('wordpress')
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Start

Expand All @@ -214,8 +214,8 @@ $this->taskDockerStart($cidOrResult)
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Stop

Expand All @@ -233,6 +233,6 @@ $this->taskDockerStop($cidOrResult)
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

2 changes: 1 addition & 1 deletion docs/tasks/Filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ $this->_copyDir('dist/config', 'config');

* `dirPermissions($value)` Sets the default folder permissions for the destination if it doesn't exist
* `exclude($exclude = null)` List files to exclude.
* `overwrite(false)` Overwrite destination files newer than source files - defaults to true.
* `overwrite($overwrite)` Destination files newer than source files are overwritten.

## DeleteDir

Expand Down
4 changes: 2 additions & 2 deletions docs/tasks/Gulp.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ $this->taskGulpRun('clean')
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

8 changes: 4 additions & 4 deletions docs/tasks/Npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ $this->taskNpmInstall('path/to/my/npm')
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

## Update

Expand All @@ -47,6 +47,6 @@ $this->taskNpmUpdate('path/to/my/npm')
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
* `args($args)` Pass methods parameters as arguments to executable. Argument values
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
* `option($option, $value = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null)` Pass multiple options to executable. Value can be a string or array.
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `optionList($option, $value = null, $separator = null)` Pass multiple options to executable. Value can be a string or array.

Loading

0 comments on commit 5e6b1ef

Please sign in to comment.