forked from Codeception/AspectMock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRoboFile.php
69 lines (58 loc) · 1.78 KB
/
RoboFile.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
require_once __DIR__.'/vendor/autoload.php';
class Robofile extends \Robo\Tasks
{
protected $docs = [
'docs/Test.md' => 'AspectMock\Test',
'docs/ClassProxy.md' => 'AspectMock\Proxy\ClassProxy',
'docs/InstanceProxy.md' => 'AspectMock\Proxy\InstanceProxy'
];
protected function version()
{
return file_get_contents(__DIR__.'/VERSION');
}
public function release()
{
$this->say("Releasing AspectMock");
$this->docs();
$this->taskGit()
->add('CHANGELOG.md')
->commit('updated')
->push()
->run();
$this->taskGitHubRelease($this->version())
->uri('Codeception/AspectMock')
->askDescription()
->run();
}
public function docs()
{
foreach ($this->docs as $file => $class) {
$this->taskGenDoc($file)
->docClass($class)
->processMethod(
function (\ReflectionMethod $m, $doc) {
$doc = str_replace(array('@since'), array(' * available since version'), $doc);
$doc = str_replace(array(' @', "\n@"), array(" * ", "\n * "), $doc);
return $doc;
}
)->run();
}
}
public function added($addition)
{
$this->taskChangelog()
->version($this->version())
->change($addition)
->run();
}
public function bump($version = null)
{
if (!$version) {
$versionParts = explode('.', $this->version());
$versionParts[count($versionParts)-1]++;
$version = implode('.', $versionParts);
}
file_put_contents('VERSION', $version);
}
}