Skip to content

Commit 9d62d14

Browse files
move docs directory int doc directory (#70)
* move `docs` directory int `doc` directory, cause `doc` is the best practice and not `docs/` * use correct directory in tes und mailing testii * remove docs occurrencei after rebase * move required test files for doc tests * fix do dir in testing script * replace name * rename file * got the last entry
1 parent a2d1638 commit 9d62d14

34 files changed

+12
-12
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@
1313
/phpunit.xml
1414

1515
# Documentation
16-
/docs/_build/*
16+
/doc/_build/*

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ filter:
22
excluded_paths:
33
- vendor/*
44
- tests/*
5-
- docs/*
5+
- doc/*
66

77
checks:
88
php:

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,9 +33,9 @@ matrix:
3333
- php: 7.2
3434
env: STABILITY="dev"
3535

36-
#docs
36+
#doc
3737
- php: '7.2'
38-
env: TARGET=docs
38+
env: TARGET=doc
3939

4040
allow_failures:
4141
# Dev-master is allowed to fail.

.travis/install_doc.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env sh
2+
3+
pip install -r doc/requirements.txt --user

.travis/install_docs.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis/script_doc.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
#!/usr/bin/env sh
2+
3+
cd doc && sphinx-build -W -b html -d _build/doctrees . _build/html

.travis/script_docs.sh

Lines changed: 0 additions & 3 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Migration from IvoryCKEditorBundle to FOSCKEditorBundle
2525
-------------------------------------------------------
2626

2727
As IvoryCKEditorBundle was abandoned, FriendsOfSymfony took this bundle over, to help
28-
you easily migrate [just follow our guide](/docs/migration.rst).
28+
you easily migrate [just follow our guide](/doc/migration.rst).
2929

3030
Documentation
3131
-------------
File renamed without changes.

docs/index.rst renamed to doc/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,4 +70,4 @@ Contributing
7070
.. _`Form Component`: http://symfony.com/doc/current/book/forms.html
7171
.. _`textarea`: http://symfony.com/doc/current/reference/forms/types/textarea.html
7272
.. _`CKEditor config`: http://docs.ckeditor.com/#!/api/CKEDITOR.config
73-
.. _`just follow our guide`: /docs/migration.rst
73+
.. _`just follow our guide`: /doc/migration.rst

0 commit comments

Comments
 (0)