Skip to content

Commit

Permalink
updated changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
DavertMik committed May 5, 2014
1 parent 1dfb252 commit 13665e9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 21 deletions.
20 changes: 5 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,15 @@

#### 0.4.1 05/05/2014

* unit and functional tests
* [BC] `taskGit` task renamed to `taskGitStack` for compatibility
* unit and functional tests added
* all command tasks now use Symfony\Process to execute them
* enabled bower and concat tasks
* added printed param to Exec task
* added param to Exec task
* added param to Exec task


#### 0.4.0 05/01/2014

* codeception suite method now returns
* enabled Bower and Concat tasks
* added `printed` param to Exec task
* codeception `suite` method now returns `$this`
* timeout options added to Exec task


#### 0.4.1 05/01/2014

* is printed option for Exec task


#### 0.4.0 04/27/2014

* Codeception task added
Expand Down
2 changes: 1 addition & 1 deletion RoboFile.php
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public function release()
$this->say("Releasing Robo");

$this->docs();
$this->taskGit()
$this->taskGitStack()
->add('-A')
->commit("auto-update")
->pull()
Expand Down
22 changes: 17 additions & 5 deletions docs/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,8 @@ $this->taskBowerInstall('path/to/my/bower')
* `offline()` adds `offline` option to bower


* `executeCommand($command)`




Expand All @@ -46,12 +48,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


* `executeCommand($command)`




Expand Down Expand Up @@ -100,6 +105,7 @@ $this->taskCodecept()



* `executeCommand($command)`


## ComposerInstallTask
Expand All @@ -120,15 +126,18 @@ $this->taskComposerInstall('path/to/my/composer.phar')
```



* `preferDist()` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
* `noDev()`
* `noDev()` adds `no-dev` option to composer







* `executeCommand($command)`
## ComposerUpdateTask


Expand All @@ -145,18 +154,20 @@ $this->taskComposerUpdate('path/to/my/composer.phar')
->run();
?>
```
@package Robo\Task



* `preferDist()` adds `prefer-dist` option to composer
* `preferSource()` adds `prefer-source` option to composer
* `noDev()`
* `noDev()` adds `no-dev` option to composer







* `executeCommand($command)`

## ConcatTask

Expand Down Expand Up @@ -645,8 +656,8 @@ $this->taskPHPUnit()
* `filter($filter)`
* `group($group)`
* `excludeGroup($group)`
* `json($file = null)`
* `xml($file = null)`
* `json($file = null)` adds `log-json` option to runner
* `xml($file = null)` adds `log-xml` option
* `tap($file = null)`
* `bootstrap($file)`
* `configFile($file)`
Expand All @@ -660,6 +671,7 @@ $this->taskPHPUnit()



* `executeCommand($command)`

## PackPharTask

Expand Down

0 comments on commit 13665e9

Please sign in to comment.