-
Notifications
You must be signed in to change notification settings - Fork 129
/
RoboFile.php
91 lines (77 loc) · 2.48 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
<?php
require_once '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',
'docs/FuncProxy.md' => 'AspectMock\Proxy\FuncProxy'
];
protected function version()
{
return file_get_contents(__DIR__.'/VERSION');
}
public function release()
{
$this->say("Releasing AspectMock");
$this->test();
$this->docs();
$this->taskGitStack()
->add('CHANGELOG.md')
->commit('updated')
->push()
->run();
$this->taskGitStack()
->tag($this->version())
->push(' --tags')
->run();
$this->bump();
}
public function docs()
{
foreach ($this->docs as $file => $class) {
class_exists($class, true);
$this->taskGenDoc($file)
->docClass($class)
->filterMethods(function(\ReflectionMethod $method) {
if ($method->isConstructor() or $method->isDestructor()) return false;
if (!$method->isPublic()) return false;
if (strpos($method->name, '_') === 0) return false;
return true;
})
->processMethodDocBlock(
function (\ReflectionMethod $m, $doc) {
$doc = str_replace(array('@since'), array(' * available since version'), $doc);
$doc = str_replace(array(' @', "\n@"), array(" * ", "\n * "), $doc);
return $doc;
})
->processProperty(false)
->run();
}
}
public function changed($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);
}
public function test()
{
$res = $this->taskCodecept()->run();
if (!$res) {
$this->say('Tests did not pass, release declined');
exit;
}
}
}