Skip to content

Commit

Permalink
auto-update
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed Aug 5, 2014
1 parent ef14dca commit 12518fe
Showing 1 changed file with 26 additions and 5 deletions.
31 changes: 26 additions & 5 deletions docs/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,15 @@ $this->taskBowerInstall('path/to/my/bower')




* `allowRoot()` adds `allow-root` option to bower
* `forceLatest()` adds `force-latest` option to bower
* `noDev()` adds `production` option to bower
* `offline()` adds `offline` option to bower


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -59,13 +61,15 @@ $this->taskBowerUpdate('path/to/my/bower')




* `allowRoot()` adds `allow-root` option to bower
* `forceLatest()` adds `force-latest` option to bower
* `noDev()` adds `production` option to bower
* `offline()` adds `offline` option to bower


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -100,6 +104,7 @@ $this->taskCodecept()




* `suite($suite)`
* `test($testName)`
* `group($group)` set group option. Can be called multiple times
Expand All @@ -125,6 +130,7 @@ $this->taskCodecept()


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -158,6 +164,8 @@ $this->taskComposerInstall('path/to/my/composer.phar')





* `preferDist()` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
* `noDev()` adds `no-dev` option to composer
Expand All @@ -172,6 +180,7 @@ $this->taskComposerInstall('path/to/my/composer.phar')


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -203,6 +212,8 @@ $this->taskComposerUpdate('path/to/my/composer.phar')





* `preferDist()` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
* `noDev()` adds `no-dev` option to composer
Expand All @@ -217,6 +228,7 @@ $this->taskComposerUpdate('path/to/my/composer.phar')


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -254,6 +266,8 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')





* `optimize()`


Expand All @@ -270,6 +284,7 @@ $this->taskComposerDumpAutoload('path/to/my/composer.phar')


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -884,6 +899,7 @@ $this->taskPHPUnit()




* `filter($filter)`
* `group($group)`
* `excludeGroup($group)`
Expand All @@ -903,6 +919,7 @@ $this->taskPHPUnit()


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -947,8 +964,8 @@ $pharTask = $this->taskPackPhar('package/codecept.phar')



* `compress($compress = null)` * `param` boolean $compress
* `stub($stub)` * `param` $stub
* `compress($compress = null)` * `param boolean` $compress
* `stub($stub)` * `param` $stub

* `addStripped($path, $file)`
* `addFile($path, $file)`
Expand Down Expand Up @@ -1087,8 +1104,9 @@ if ('y' === $this->ask('Do you want to run (y/n)')) {



* `fromPath($path)` This can either be a full rsync path spec (user * `host:path)` or just a path.
* `toPath($path)` This can either be a full rsync path spec (user * `host:path)` or just a path.

* `fromPath($path)` This can either be a full rsync path spec (user@host:path) or just a path.
* `toPath($path)` This can either be a full rsync path spec (user@host:path) or just a path.
* `progress()`
* `stats()`
* `recursive()`
Expand All @@ -1113,6 +1131,7 @@ if ('y' === $this->ask('Do you want to run (y/n)')) {


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down Expand Up @@ -1159,12 +1178,13 @@ $this->taskSshExec('remote.example.com')




* `identityFile($filename)`
* `port($port)`
* `forcePseudoTty()`
* `quiet()`
* `verbose()`
* `exec($command)` * `param` string|CommandInterface $command
* `exec($command)` * `param string|CommandInterface` $command



Expand All @@ -1181,6 +1201,7 @@ $this->taskSshExec('remote.example.com')


* `printed($arg)` Should command output be printed
* `dir($dir)` changes working directory of command

* `arg($arg)` Pass argument to executable
* `args($args)` Pass methods parameters as arguments to executable
Expand Down

0 comments on commit 12518fe

Please sign in to comment.