Skip to content

Commit

Permalink
Robo release 3.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Aug 28, 2021
1 parent 1162a91 commit e16bdd9
Show file tree
Hide file tree
Showing 12 changed files with 40 additions and 4 deletions.
1 change: 1 addition & 0 deletions docs/tasks/ApiGen.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ $this->taskApiGen('./vendor/apigen/apigen.phar')
* `updateCheck($check)` * `param bool|string` $check
* `debug($debug)` * `param bool|string` $debug
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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.
Expand Down
7 changes: 4 additions & 3 deletions docs/tasks/Base.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ if ($this->taskExec('phpunit .')->run()->wasSuccessful()) {

* `simulate($context)` {@inheritdoc}
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Sets the input for the command. Similar to a pipe like `echo "input" | cat`.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -50,8 +50,9 @@ $this->taskExecStack()
* `executable($executable)` * `param string` $executable
* `exec($command)` * `param string|string[]|CommandInterface` $command
* `stopOnFail($stopOnFail = null)` * `param bool` $stopOnFail
* `result($result)`
* `result($result)`
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `dir($dir)` Changes working directory of command

## ParallelExec
Expand Down Expand Up @@ -95,7 +96,7 @@ $this->taskSymfonyCommand(new ModelGeneratorCommand())
```

* `arg($arg, $value)` * `param string` $arg
* `opt($option, $value = null)`
* `opt($option, $value = null)`
* `setOutput($output)` Sets the Console Output.


Expand Down
2 changes: 2 additions & 0 deletions docs/tasks/Bower.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ $this->taskBowerInstall('path/to/my/bower')
* `noDev()` adds `production` option to bower
* `offline()` adds `offline` option to bower
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -53,6 +54,7 @@ $this->taskBowerUpdate('path/to/my/bower')
* `noDev()` adds `production` option to bower
* `offline()` adds `offline` option to bower
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down
10 changes: 10 additions & 0 deletions docs/tasks/Composer.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ $this->taskComposerValidate()->run();
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -68,6 +69,7 @@ $this->taskComposerConfig()->set('bin-dir', 'bin/')->run();
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -110,6 +112,7 @@ $this->taskComposerCreateProject()->source('foo/bar')->target('myBar')->run();
* `noScripts($disable = null)` skip scripts
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -162,6 +165,7 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -206,6 +210,7 @@ $this->taskComposerInit()->run();
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -252,6 +257,7 @@ $this->taskComposerInstall('path/to/my/composer.phar')
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -291,6 +297,7 @@ $this->taskComposerRemove()->run();
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -328,6 +335,7 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -375,6 +383,7 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -415,6 +424,7 @@ $this->taskComposerValidate()->run();
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down
1 change: 1 addition & 0 deletions docs/tasks/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,7 @@ $this->taskServer(8000)
* `dir($path)` * `param string` $path
* `simulate($context)` {@inheritdoc}
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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.
Expand Down
8 changes: 8 additions & 0 deletions docs/tasks/Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ Class Build
* `tag($tag)` * `param string` $tag
* `enableBuildKit()` * `return` $this
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -54,6 +55,7 @@ $task->dockerCommit($result)

* `name($name)` * `param string` $name
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -91,6 +93,7 @@ $this->taskDockerExec($test)
* `detached()` * `return` $this
* `exec($command)` * `param string|\Robo\Contract\CommandInterface` $command
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand All @@ -114,6 +117,7 @@ $this->taskDockerPull('wordpress')


* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand All @@ -136,6 +140,7 @@ $this->taskDockerRemove($container)


* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -203,6 +208,7 @@ $this->taskDockerRun('wordpress')
* `getTmpDir()` @return string
* `getUniqId()` @return string
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand All @@ -224,6 +230,7 @@ $this->taskDockerStart($cidOrResult)
```

* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand All @@ -245,6 +252,7 @@ $this->taskDockerStop($cidOrResult)
```

* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down
1 change: 1 addition & 0 deletions docs/tasks/Gulp.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ $this->taskGulpRun('clean')
* `color()` adds `--color` option to gulp
* `simple()` adds `--tasks-simple` option to gulp
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down
2 changes: 2 additions & 0 deletions docs/tasks/Npm.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ $this->taskNpmInstall('path/to/my/npm')

* `noDev()` adds `production` option to npm
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -47,6 +48,7 @@ $this->taskNpmUpdate('path/to/my/npm')

* `noDev()` adds `production` option to npm
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down
2 changes: 2 additions & 0 deletions docs/tasks/Remote.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ if ('y' === $this->ask('Do you want to run (y/n)')) {
* `filesFrom($file)` * `param string` $file
* `remoteShell($command)` * `param string` $command
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -125,6 +126,7 @@ You can configure the remote directory for all future calls:
* `exec($command)` * `param string|string[]|CommandInterface` $command
* `simulate($context)` {@inheritdoc}
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down
5 changes: 5 additions & 0 deletions docs/tasks/Testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ $this->taskAtoum()
* `files($files)` Test file or test files to run.
* `directories($directories)` Test directory or directories to run.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -55,6 +56,7 @@ $this->taskBehat()
* `verbose($level = null)` * `param string` $level
* `format($formater)` * `param string` $formater
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -100,6 +102,7 @@ $this->taskCodecept()
* `noExit()` * `return` $this
* `failGroup($failGroup)` * `param string` $failGroup
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -135,6 +138,7 @@ $this->taskPHPUnit()
* `files($files)` Directory of test files or single test file to run.
* `file($file)` Test the provided file.
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down Expand Up @@ -167,6 +171,7 @@ $this->taskPhpspec()
* `config($config_file)` * `param string` $config_file
* `format($formater)` * `param string` $formater
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `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
Expand Down
3 changes: 3 additions & 0 deletions docs/tasks/Vcs.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ $this->taskGitStack()
* `stopOnFail($stopOnFail = null)` * `param bool` $stopOnFail
* `result($result)`
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `dir($dir)` Changes working directory of command

## HgStack
Expand Down Expand Up @@ -71,6 +72,7 @@ $this->hgStack
* `stopOnFail($stopOnFail = null)` * `param bool` $stopOnFail
* `result($result)`
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `dir($dir)` Changes working directory of command


Expand Down Expand Up @@ -106,6 +108,7 @@ $this->taskSvnStack('username', 'password')
* `stopOnFail($stopOnFail = null)` * `param bool` $stopOnFail
* `result($result)`
* `setOutput($output)` Sets the Console Output.
* `setProcessInput($input)` Pass an input to the process. Can be resource created with fopen() or string
* `dir($dir)` Changes working directory of command


2 changes: 1 addition & 1 deletion src/Robo.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class Robo
{
const APPLICATION_NAME = 'Robo';
const VERSION = '3.0.4-dev';
const VERSION = '3.0.4';

/**
* The currently active container object, or NULL if not initialized yet.
Expand Down

0 comments on commit e16bdd9

Please sign in to comment.