Skip to content

Commit 527b711

Browse files
committedAug 7, 2014
Created a .dependencies and some other install cleanup
1 parent 7fe6d1f commit 527b711

File tree

30 files changed

+273
-511
lines changed

30 files changed

+273
-511
lines changed
 

‎.dependencies

+23
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
git:
2+
problems:
3+
url: git@github.com:getgrav/grav-plugin-problems.git
4+
path: user/plugins/problems
5+
branch: develop
6+
error:
7+
url: git@github.com:getgrav/grav-plugin-error.git
8+
path: user/plugins/error
9+
branch: develop
10+
antimatter:
11+
url: git@github.com:getgrav/grav-theme-antimatter.git
12+
path: user/themes/antimatter
13+
branch: develop
14+
links:
15+
problems:
16+
src: ../grav-plugin-problems
17+
path: user/plugins/problems
18+
error:
19+
src: ../grav-plugin-error
20+
path: user/plugins/error
21+
antimatter:
22+
src: ../grav-theme-antimatter
23+
path: user/themes/antimatter

‎.gitignore

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ Thumbs.db
1212
*.swp
1313

1414
# Grav Specific
15-
/cache
16-
/logs
17-
/images
1815
/user/data/*
1916
!/user/data/index.html
2017
user/plugins/**/

‎bin/grav

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ if (!file_exists(ROOT_DIR . 'index.php')) {
1515

1616
$app = new Application('Grav CLI Application', '0.1.0');
1717
$app->addCommands(array(
18-
new Grav\Console\InstallCommand(),
19-
new Grav\Console\PackageCommand(),
18+
new Grav\Console\SetupCommand(),
19+
new Grav\Console\CleanCommand(),
2020
));
2121
$app->run();

‎cache/.gitkeep

Whitespace-only changes.

‎images/.gitkeep

Whitespace-only changes.

‎logs/.gitkeep

Whitespace-only changes.

‎system/src/Grav/Console/PackageCommand.php ‎system/src/Grav/Console/CleanCommand.php

+14-30
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,11 @@
88
use Symfony\Component\Console\Output\OutputInterface;
99
use Symfony\Component\Console\Formatter\OutputFormatterStyle;
1010

11-
class PackageCommand extends Command {
11+
class CleanCommand extends Command {
1212

1313
protected $destination_dir = 'distribution';
1414

15-
protected $paths_to_create = [
16-
'cache',
17-
'logs',
18-
'images',
19-
];
20-
2115
protected $paths_to_remove = [
22-
'cache',
23-
'logs',
24-
'images',
2516
'user/plugins/email/vendor/swiftmailer/swiftmailer/.travis.yml',
2617
'user/plugins/email/vendor/swiftmailer/swiftmailer/build.xml',
2718
'user/plugins/email/vendor/swiftmailer/swiftmailer/composer.json',
@@ -96,15 +87,9 @@ class PackageCommand extends Command {
9687

9788
protected function configure() {
9889
$this
99-
->setName("package")
100-
->setDescription("Handles packaging chores for Grav")
101-
->addOption(
102-
'clean',
103-
'c',
104-
InputOption::VALUE_NONE,
105-
'Clean out extra files in vendor folder'
106-
)
107-
->setHelp('The <info>package</info> command does things and stuff');
90+
->setName("clean")
91+
->setDescription("Handles cl chores for Grav")
92+
->setHelp('The <info>clean</info> clean extraneous folders and data');
10893
}
10994

11095
protected function execute(InputInterface $input, OutputInterface $output)
@@ -117,9 +102,8 @@ protected function execute(InputInterface $input, OutputInterface $output)
117102
$output->getFormatter()->setStyle('green', new OutputFormatterStyle('green'));
118103
$output->getFormatter()->setStyle('magenta', new OutputFormatterStyle('magenta'));
119104

120-
if ($input->getOption('clean')) {
121-
$this->cleanPaths($output);
122-
}
105+
$this->cleanPaths($output);
106+
123107

124108
}
125109

@@ -129,25 +113,25 @@ private function cleanPaths($output)
129113
$output->writeln('');
130114
$output->writeln('<red>DELETING</red>');
131115

116+
$anything = false;
117+
132118
foreach($this->paths_to_remove as $path) {
133119
$path = ROOT_DIR . $path;
134120

135121
if (is_dir($path) && @$this->rrmdir($path)) {
122+
$anything = true;
136123
$output->writeln('<red>dir: </red>' . $path);
137124
} elseif (is_file($path) && @unlink($path)) {
125+
$anything = true;
138126
$output->writeln('<red>file: </red>' . $path);
139127
}
140128
}
141129

142-
$output->writeln('');
143-
$output->writeln('<green>CREATING</green>');
144-
145-
foreach($this->paths_to_create as $path) {
146-
$path = ROOT_DIR . $path;
147-
if (@mkdir($path)) {
148-
$output->writeln('<green>dir: </green>' . $path);
149-
}
130+
if (!$anything) {
131+
$output->writeln('');
132+
$output->writeln('<green>Nothing to clean...</green>');
150133
}
134+
151135
}
152136

153137
// Recursively Delete folder - DANGEROUS! USE WITH CARE!!!!

0 commit comments

Comments
 (0)
Please sign in to comment.