芝麻web文件管理V1.00
编辑当前文件:/home2/sdektunc/xmintal-back/vendor/codeception/specify/RoboFile.php
test(); $version = file_get_contents('VERSION'); $this->docs(); // create GitHub release $this->taskGitHubRelease($version) ->uri('Codeception/Specify') ->askDescription() ->run(); } public function changed($description) { $this->taskChangelog() ->version(file_get_contents('VERSION')) ->change($description) ->run(); } protected $docs = [ 'docs/GlobalConfig.md' => '\Codeception\Specify\Config', 'docs/LocalConfig.md' => '\Codeception\Specify\ConfigBuilder', ]; public function docs() { foreach ($this->docs as $file => $class) { class_exists($class, true); $this->taskGenDoc($file) ->docClass($class) ->processProperty(false) ->run(); } } public function test() { $res = $this->taskPHPUnit()->run(); if (!$res) exit; } }