Skip to content

Commit 4637342

Browse files
committed
wip
1 parent d9c112c commit 4637342

21 files changed

+41
-5
lines changed

config/.gitkeep

Whitespace-only changes.

src/StubPublishCommand.php

+27-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,36 @@
22

33
namespace Spatie\Stubs;
44

5-
use Illuminate\Foundation\Console\StubPublishCommand as IlluminateStubPublishCommand;
5+
use Illuminate\Console\Command;
6+
use Illuminate\Console\ConfirmableTrait;
7+
use Illuminate\Filesystem\Filesystem;
8+
use Illuminate\Support\Facades\File;
9+
use Symfony\Component\Finder\SplFileInfo;
610

7-
class StubPublishCommand extends IlluminateStubPublishCommand
11+
class StubPublishCommand extends Command
812
{
9-
protected $signature = 'stub:publish';
13+
protected $signature = 'spatie-stub:publish';
1014

1115
protected $description = 'Publish all opinionated stubs that are available for customization';
1216

17+
use ConfirmableTrait;
18+
19+
public function handle()
20+
{
21+
if (! is_dir($stubsPath = $this->laravel->basePath('stubs'))) {
22+
(new Filesystem)->makeDirectory($stubsPath);
23+
}
24+
25+
collect(File::files(__DIR__ . '/../stubs'))->each(function(SplFileInfo $file) use ($stubsPath) {
26+
$sourcePath = $file->getPathname();
27+
28+
$targetPath = $stubsPath . "/{$file->getFilename()}";
29+
30+
if (! file_exists($targetPath) || $this->option('force')) {
31+
file_put_contents($targetPath, file_get_contents($sourcePath));
32+
}
33+
});
34+
35+
$this->comment('All done!');
36+
}
1337
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

src/stubs/job.stub stubs/job.stub

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

tests/StubPublishCommandTest.php

+14-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,23 @@
22

33
namespace Spatie\Stubs\Tests;
44

5+
use Illuminate\Support\Facades\File;
6+
57
class StubPublishCommandTest extends TestCase
68
{
79
/** @test */
8-
public function it_tests()
10+
public function it_can_publish_stubs()
911
{
10-
$this->assertTrue(true);
12+
$targetStubsPath = $this->app->basePath('stubs');
13+
14+
File::deleteDirectory($targetStubsPath);
15+
16+
$this->artisan('spatie-stub:publish')->assertExitCode(0);
17+
18+
$stubPath = __DIR__ . '/../stubs/migration.stub';
19+
20+
$publishedStubPath = $targetStubsPath . '/migration.stub';
21+
22+
$this->assertFileEquals($stubPath, $publishedStubPath);
1123
}
1224
}

0 commit comments

Comments
 (0)