Skip to content

Commit 3a3ab4c

Browse files
authored
Merge pull request #84 from moremoban/dev
🥚 🎡 release 0.2.4
2 parents d1e9014 + 0d94e62 commit 3a3ab4c

File tree

18 files changed

+194
-21
lines changed

18 files changed

+194
-21
lines changed

.moban.cd/changelog.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
name: moban
22
organisation: moremoban
33
releases:
4+
- changes:
5+
- action: Added
6+
details:
7+
- "`#32`: option 1 copy a directory without its subdirectories."
8+
- "`#30`: command line template option is ignore when a moban file is present"
9+
date: 14-07-2018
10+
version: 0.2.4
411
- changes:
512
- action: Added
613
details:

.moban.cd/moban.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@ organisation: moremoban
33
author: C. W.
44
55
license: MIT
6-
version: 0.2.3
7-
current_version: 0.2.3
8-
release: 0.2.3
6+
version: 0.2.4
7+
current_version: 0.2.4
8+
release: 0.2.4
99
branch: master
1010
command_line_interface: "moban"
1111
entry_point: "moban.main:main"

.moban.d/travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
{%block custom_python_versions%}
44
python:
55
- pypy-5.3.1
6+
- 3.7-dev
67
- 3.6
78
- 3.5
89
- 3.4

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ notifications:
44
email: false
55
python:
66
- pypy-5.3.1
7+
- 3.7-dev
78
- 3.6
89
- 3.5
910
- 3.4

CHANGELOG.rst

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,17 @@
11
Change log
22
================================================================================
33

4+
0.2.4 - 14-07-2018
5+
--------------------------------------------------------------------------------
6+
7+
Added
8+
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
9+
10+
#. `#32 <https://github.com/moremoban/moban/issues/32>`_: option 1 copy a
11+
directory without its subdirectories.
12+
#. `#30 <https://github.com/moremoban/moban/issues/30>`_: command line template
13+
option is ignore when a moban file is present
14+
415
0.2.3 - 10-07-2018
516
--------------------------------------------------------------------------------
617

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,9 +28,9 @@
2828
author = u'C. W.'
2929

3030
# The short X.Y version
31-
version = u'0.2.3'
31+
version = u'0.2.4'
3232
# The full version, including alpha/beta/rc tags
33-
release = u'0.2.3'
33+
release = u'0.2.4'
3434

3535

3636
# -- General configuration ---------------------------------------------------

docs/misc-1-copying-templates/.moban.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,5 @@ configuration:
44
copy:
55
- simple.file.copy: file-in-template-sources-folder.txt
66
- "misc-1-copying/can-create-folder/if-not-exists.txt": file-in-template-sources-folder.txt
7+
- "test-dir": dir-for-copying
8+
- "test-recursive-dir": dir-for-recusive-copying/**

docs/misc-1-copying-templates/README.rst

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,26 @@ Misc 1: copying templates
44
With `.moban.yml`, you can copy templates to your destination.
55

66

7+
Please be aware that, your templates and template folder have to be inside
8+
declared template folders. It does not copy any file or folder.
79

10+
11+
Here is example moban file for copying::
12+
13+
configuration:
14+
template_dir:
15+
- template-sources
16+
copy:
17+
- simple.file.copy: file-in-template-sources-folder.txt
18+
- "misc-1-copying/can-create-folder/if-not-exists.txt": file-in-template-sources-folder.txt
19+
- "test-dir": dir-for-copying
20+
- "test-recursive-dir": dir-for-recusive-copying/**
21+
22+
23+
template copy does:
24+
25+
26+
#. copies any template inside pre-declared template directory to anywhere. moban will
27+
create directory if needed.
28+
#. copies any directory to anywhere. If "**" is followed, moban attempts to do
29+
recursive copying.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
dir for copying
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Please look at .moban.yml

0 commit comments

Comments
 (0)