Skip to content

Commit b768615

Browse files
Robo release 2.0.4
1 parent 3e0afc2 commit b768615

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

docs/tasks/Composer.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,7 @@ $this->taskComposerInstall('path/to/my/composer.phar')
197197
?>
198198
```
199199

200+
* `noSuggest($noSuggest = null)` adds `no-suggest` option to composer
200201
* `preferDist($preferDist = null)` adds `prefer-dist` option to composer
201202
* `preferSource()` adds `prefer-source` option to composer
202203
* `dev($dev = null)` adds `dev` option to composer
@@ -209,7 +210,6 @@ $this->taskComposerInstall('path/to/my/composer.phar')
209210
* `ignorePlatformRequirements($ignore = null)` adds `ignore-platform-reqs` option to composer
210211
* `disablePlugins($disable = null)` disable plugins
211212
* `noScripts($disable = null)` skip scripts
212-
* `noSuggest($noSuggest = true)` skip suggestions
213213
* `workingDir($dir)` adds `--working-dir $dir` option to composer
214214
* `buildCommand()` Copy class fields into command options as directed.
215215
* `dir($dir)` Changes working directory of command
@@ -271,6 +271,7 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
271271
```
272272

273273
* `dependency($project, $version = null)` 'require' is a keyword, so it cannot be a method name.
274+
* `noSuggest($noSuggest = null)` adds `no-suggest` option to composer
274275
* `preferDist($preferDist = null)` adds `prefer-dist` option to composer
275276
* `preferSource()` adds `prefer-source` option to composer
276277
* `dev($dev = null)` adds `dev` option to composer
@@ -283,7 +284,6 @@ $this->taskComposerRequire()->dependency('foo/bar', '^.2.4.8')->run();
283284
* `ignorePlatformRequirements($ignore = null)` adds `ignore-platform-reqs` option to composer
284285
* `disablePlugins($disable = null)` disable plugins
285286
* `noScripts($disable = null)` skip scripts
286-
* `noSuggest($noSuggest = true)` skip suggestions
287287
* `workingDir($dir)` adds `--working-dir $dir` option to composer
288288
* `buildCommand()` Copy class fields into command options as directed.
289289
* `dir($dir)` Changes working directory of command
@@ -316,6 +316,7 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
316316
?>
317317
```
318318

319+
* `noSuggest($noSuggest = null)` adds `no-suggest` option to composer
319320
* `preferDist($preferDist = null)` adds `prefer-dist` option to composer
320321
* `preferSource()` adds `prefer-source` option to composer
321322
* `dev($dev = null)` adds `dev` option to composer
@@ -328,7 +329,6 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
328329
* `ignorePlatformRequirements($ignore = null)` adds `ignore-platform-reqs` option to composer
329330
* `disablePlugins($disable = null)` disable plugins
330331
* `noScripts($disable = null)` skip scripts
331-
* `noSuggest($noSuggest = true)` skip suggestions
332332
* `workingDir($dir)` adds `--working-dir $dir` option to composer
333333
* `buildCommand()` Copy class fields into command options as directed.
334334
* `dir($dir)` Changes working directory of command

docs/tasks/Docker.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@ Class Build
2121
@package Robo\Task\Docker
2222

2323
* `tag($tag)` * `param string` $tag
24+
* `enableBuildKit()` * `return` $this
2425
* `dir($dir)` Changes working directory of command
2526
* `arg($arg)` Pass argument to executable. Its value will be automatically escaped.
2627
* `args($args)` Pass methods parameters as arguments to executable. Argument values
2728
* `rawArg($arg)` Pass the provided string in its raw (as provided) form as an argument to executable.
2829
* `option($option, $value = null, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
2930
* `options(array $options, $separator = null)` Pass multiple options to executable. The associative array contains
3031
* `optionList($option, $value = null, $separator = null)` Pass an option with multiple values to executable. Value can be a string or array.
31-
* `enableBuildKit()` Build with [Docker Buildkit](https://docs.docker.com/develop/develop-images/build_enhancements/)
3232

3333
## Commit
3434

docs/tasks/File.md

+1
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ $this->taskReplaceInFile('box/robo.txt')
5151
* `from($from)` String(s) to be replaced.
5252
* `to($to)` Value(s) to be set as a replacement.
5353
* `regex($regex)` Regex to match string to be replaced.
54+
* `limit($limit)` If used with $this->regexp() how many counts will be replaced
5455

5556
## TmpFile
5657

src/Robo.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
class Robo
2222
{
2323
const APPLICATION_NAME = 'Robo';
24-
const VERSION = '2.0.4-dev';
24+
const VERSION = '2.0.4';
2525

2626
/**
2727
* The currently active container object, or NULL if not initialized yet.

0 commit comments

Comments
 (0)