Skip to content

Commit

Permalink
Robo release 1.0.8
Browse files Browse the repository at this point in the history
  • Loading branch information
greg-1-anderson committed Jun 3, 2017
1 parent 7fa2cb9 commit 256943c
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions docs/tasks/Composer.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,9 +55,9 @@ $this->taskComposerCreateProject()->source('foo/bar')->target('myBar')->run();
* `target($target)` * `return` $this
* `version($version)` * `return` $this
* `keepVcs($keep = null)`
* `install($install = null)`
* `noInstall()`
* `noInstall($noInstall = null)`
* `repository($repository)` * `return` $this
* `stability($stability)` * `return` $this
* `buildCommand()` Copy class fields into command options as directed.
* `preferDist($preferDist = null)` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
Expand Down
1 change: 1 addition & 0 deletions docs/tasks/Development.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ $this->taskSemVer('.semver')


* `__toString()` @return string
* `version($version)`
* `setFormat($format)` * `param string` $format
* `setMetadataSeparator($separator)` * `param string` $separator
* `setPrereleaseSeparator($separator)` * `param string` $separator
Expand Down
5 changes: 1 addition & 4 deletions docs/tasks/Filesystem.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,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. Supported path values:
- file/directory basename
- file/directory path relative to execution directory
- file/directory path relative to source directory
* `exclude($exclude = null)` List files to exclude.
* `overwrite($overwrite)` Destination files newer than source files are overwritten.

## DeleteDir
Expand Down
2 changes: 1 addition & 1 deletion docs/tasks/Vcs.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ $this->taskGitStack()
?>
```

* `cloneRepo($repo, $to = null)` Executes `git clone`
* `cloneRepo($repo, $to = null, $branch = null)` Executes `git clone`
* `add($pattern)` Executes `git add` command with files to add pattern
* `commit($message, $options = null)` Executes `git commit` command with a message
* `pull($origin = null, $branch = null)` Executes `git pull` command.
Expand Down
2 changes: 1 addition & 1 deletion src/Robo.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
class Robo
{
const APPLICATION_NAME = 'Robo';
const VERSION = '1.0.8-dev';
const VERSION = '1.0.8';

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

0 comments on commit 256943c

Please sign in to comment.