Skip to content

Commit bde3fbf

Browse files
committed
Rename config file. The old name was meaningless to most people.
See: xmlsquad/xml-authoring-library#4 (comment)
1 parent 6f9aab4 commit bde3fbf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
/composer.lock
55

66
# HelloWorld-related
7-
/scapesettings.yaml
7+
/XmlAuthoringProjectSettings.yaml
88
/HelloWorld.txt
99

1010

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ A git project that acts as an example of an xmlauthor command.
1919
* Try `hello-world` command:
2020

2121
```bash
22-
bin/hello-world --configFilename=scapesettings.yaml.dist
22+
bin/hello-world --configFilename=XmlAuthoringProjectSettings.yaml.dist
2323
```
2424

2525
### Building own command

tests/Command/HelloWorldCommandTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public function testExecute()
3434
$commandTester->execute(array(
3535
'command' => $command->getName(),
3636
'--targetDirectory'=> SELF::TMP_TEST_DATA_DIR,
37-
'--configFilename' => 'scapesettings.yaml.dist',
37+
'--configFilename' => 'XmlAuthoringProjectSettings.yaml.dist',
3838
));
3939

4040
$output = $commandTester->getDisplay();
@@ -44,7 +44,7 @@ public function testExecute()
4444
$commandTester->execute(array(
4545
'command' => $command->getName(),
4646
'--targetDirectory'=> SELF::TMP_TEST_DATA_DIR,
47-
'--configFilename' => 'scapesettings.yaml.dist',
47+
'--configFilename' => 'XmlAuthoringProjectSettings.yaml.dist',
4848
));
4949
$output = $commandTester->getDisplay();
5050
$this->assertContains("[HelloWorld.txt] already exists.\n", $output);

0 commit comments

Comments
 (0)