Skip to content

Commit

Permalink
Robo release 2.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed May 22, 2020
1 parent 3e0afc2 commit b768615
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/tasks/Composer.md
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,7 @@ $this->taskComposerInstall('path/to/my/composer.phar')
?>
```

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

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

* `noSuggest($noSuggest = null)` adds `no-suggest` option to composer
* `preferDist($preferDist = null)` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
* `dev($dev = null)` adds `dev` option to composer
Expand All @@ -328,7 +329,6 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
* `ignorePlatformRequirements($ignore = null)` adds `ignore-platform-reqs` option to composer
* `disablePlugins($disable = null)` disable plugins
* `noScripts($disable = null)` skip scripts
* `noSuggest($noSuggest = true)` skip suggestions
* `workingDir($dir)` adds `--working-dir $dir` option to composer
* `buildCommand()` Copy class fields into command options as directed.
* `dir($dir)` Changes working directory of command
Expand Down
2 changes: 1 addition & 1 deletion docs/tasks/Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,14 @@ Class Build
@package Robo\Task\Docker

* `tag($tag)` * `param string` $tag
* `enableBuildKit()` * `return` $this
* `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, $separator = null)` Pass option to executable. Options are prefixed with `--` , value can be provided in second parameter.
* `options(array $options, $separator = null)` Pass multiple options to executable. The associative array contains
* `optionList($option, $value = null, $separator = null)` Pass an option with multiple values to executable. Value can be a string or array.
* `enableBuildKit()` Build with [Docker Buildkit](https://docs.docker.com/develop/develop-images/build_enhancements/)

## Commit

Expand Down
1 change: 1 addition & 0 deletions docs/tasks/File.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ $this->taskReplaceInFile('box/robo.txt')
* `from($from)` String(s) to be replaced.
* `to($to)` Value(s) to be set as a replacement.
* `regex($regex)` Regex to match string to be replaced.
* `limit($limit)` If used with $this->regexp() how many counts will be replaced

## TmpFile

Expand Down
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 = '2.0.4-dev';
const VERSION = '2.0.4';

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

0 comments on commit b768615

Please sign in to comment.