power_stencil 0.3.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (132) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +13 -0
  3. data/.rspec +2 -0
  4. data/.travis.yml +5 -0
  5. data/CODE_OF_CONDUCT.md +74 -0
  6. data/Gemfile +4 -0
  7. data/LICENSE.txt +21 -0
  8. data/README.md +198 -0
  9. data/Rakefile +6 -0
  10. data/bin/console +14 -0
  11. data/bin/setup +8 -0
  12. data/bin/update_plugin_template +79 -0
  13. data/doc/builds.md +267 -0
  14. data/doc/entities.md +964 -0
  15. data/doc/example_use_cases.md +59 -0
  16. data/doc/images/power-stencil-entity-build.svg +481 -0
  17. data/doc/images/power-stencil-entity-creation.svg +375 -0
  18. data/doc/images/power-stencil-simple-flow.svg +265 -0
  19. data/doc/plugins.md +169 -0
  20. data/doc/templates.md +333 -0
  21. data/etc/base_commands_definition.yml +259 -0
  22. data/etc/meta_templates/plugin_seed/etc/command_line.yaml +12 -0
  23. data/etc/meta_templates/plugin_seed/etc/plugin_config.yaml +4 -0
  24. data/etc/meta_templates/plugin_seed/etc/templates/.git_keep +0 -0
  25. data/etc/meta_templates/plugin_seed/lib/{entity}.rb.erb +34 -0
  26. data/etc/meta_templates/plugin_seed/lib/{entity}/entity_definitions/{entity}_entity.rb.erb +11 -0
  27. data/etc/meta_templates/plugin_seed/lib/{entity}/plugin_helper.rb.erb +17 -0
  28. data/etc/meta_templates/plugin_seed/lib/{entity}/version.rb.erb +3 -0
  29. data/etc/meta_templates/plugin_seed/lib/{entity}/{entity}_processor.rb.erb +19 -0
  30. data/etc/meta_templates/plugin_seed/psplugin_{entity}.gemspec +36 -0
  31. data/etc/power_stencil.yaml +92 -0
  32. data/etc/templates/plugin_definition/.gitignore +11 -0
  33. data/etc/templates/plugin_definition/.rspec +3 -0
  34. data/etc/templates/plugin_definition/.travis.yml +5 -0
  35. data/etc/templates/plugin_definition/CODE_OF_CONDUCT.md +74 -0
  36. data/etc/templates/plugin_definition/Gemfile +6 -0
  37. data/etc/templates/plugin_definition/LICENSE.txt +21 -0
  38. data/etc/templates/plugin_definition/README.md +43 -0
  39. data/etc/templates/plugin_definition/Rakefile +6 -0
  40. data/etc/templates/plugin_definition/bin/console +14 -0
  41. data/etc/templates/plugin_definition/bin/setup +8 -0
  42. data/etc/templates/plugin_definition/etc/command_line.yaml +12 -0
  43. data/etc/templates/plugin_definition/etc/plugin_config.yaml +4 -0
  44. data/etc/templates/plugin_definition/etc/templates/.git_keep +1 -0
  45. data/etc/templates/plugin_definition/lib/{entity}.rb.erb +34 -0
  46. data/etc/templates/plugin_definition/lib/{entity}/entity_definitions/{entity}_entity.rb.erb +11 -0
  47. data/etc/templates/plugin_definition/lib/{entity}/plugin_helper.rb.erb +17 -0
  48. data/etc/templates/plugin_definition/lib/{entity}/version.rb.erb +3 -0
  49. data/etc/templates/plugin_definition/lib/{entity}/{entity}_processor.rb.erb +19 -0
  50. data/etc/templates/plugin_definition/psplugin_{entity}.gemspec +36 -0
  51. data/etc/templates/plugin_definition/spec/spec_helper.rb +14 -0
  52. data/etc/templates/plugin_definition/spec/{entity}_spec.rb +9 -0
  53. data/etc/templates/project/.copy_ignore +2 -0
  54. data/etc/templates/project/.gitignore.erb +6 -0
  55. data/etc/templates/project/.ps_project/entities/.gitkeep +0 -0
  56. data/etc/templates/project/.ps_project/entities/README.md +11 -0
  57. data/etc/templates/project/.ps_project/entity_definitions/.gitkeep +0 -0
  58. data/etc/templates/project/.ps_project/entity_definitions/README.md +15 -0
  59. data/etc/templates/project/.ps_project/personal-config.yaml +8 -0
  60. data/etc/templates/project/.ps_project/plugins/.gitkeep +0 -0
  61. data/etc/templates/project/.ps_project/templates-templates/.gitkeep +0 -0
  62. data/etc/templates/project/.ps_project/templates-templates/README.md +13 -0
  63. data/etc/templates/project/.ps_project/user_entities/.gitkeep +0 -0
  64. data/etc/templates/project/.ps_project/user_entities/README.md +12 -0
  65. data/etc/templates/project/.ps_project/versioned-config.yaml +6 -0
  66. data/etc/templates/simple_exec/main.sh +4 -0
  67. data/exe/power_stencil +28 -0
  68. data/lib/power_stencil.rb +53 -0
  69. data/lib/power_stencil/command_processors/build.rb +43 -0
  70. data/lib/power_stencil/command_processors/check.rb +35 -0
  71. data/lib/power_stencil/command_processors/create.rb +70 -0
  72. data/lib/power_stencil/command_processors/delete.rb +38 -0
  73. data/lib/power_stencil/command_processors/edit.rb +35 -0
  74. data/lib/power_stencil/command_processors/entity_helper.rb +105 -0
  75. data/lib/power_stencil/command_processors/get.rb +22 -0
  76. data/lib/power_stencil/command_processors/info.rb +41 -0
  77. data/lib/power_stencil/command_processors/init.rb +47 -0
  78. data/lib/power_stencil/command_processors/new_plugin.rb +31 -0
  79. data/lib/power_stencil/command_processors/root.rb +27 -0
  80. data/lib/power_stencil/command_processors/shell.rb +37 -0
  81. data/lib/power_stencil/command_processors/trace_helper.rb +20 -0
  82. data/lib/power_stencil/dsl/base.rb +24 -0
  83. data/lib/power_stencil/dsl/entities.rb +46 -0
  84. data/lib/power_stencil/dsl/plugin_generation.rb +17 -0
  85. data/lib/power_stencil/engine/base.rb +50 -0
  86. data/lib/power_stencil/engine/build_handling.rb +77 -0
  87. data/lib/power_stencil/engine/directory_processor.rb +111 -0
  88. data/lib/power_stencil/engine/entities_definitions.rb +42 -0
  89. data/lib/power_stencil/engine/entities_handling.rb +76 -0
  90. data/lib/power_stencil/engine/entity_engine.rb +20 -0
  91. data/lib/power_stencil/engine/init_engine.rb +18 -0
  92. data/lib/power_stencil/engine/project_engine.rb +75 -0
  93. data/lib/power_stencil/engine/renderers/erb.rb +21 -0
  94. data/lib/power_stencil/error.rb +20 -0
  95. data/lib/power_stencil/initializer.rb +87 -0
  96. data/lib/power_stencil/plugins/base.rb +54 -0
  97. data/lib/power_stencil/plugins/capabilities.rb +30 -0
  98. data/lib/power_stencil/plugins/command_line.rb +27 -0
  99. data/lib/power_stencil/plugins/config.rb +32 -0
  100. data/lib/power_stencil/plugins/dependencies.rb +32 -0
  101. data/lib/power_stencil/plugins/gem.rb +57 -0
  102. data/lib/power_stencil/plugins/require.rb +77 -0
  103. data/lib/power_stencil/plugins/templates.rb +21 -0
  104. data/lib/power_stencil/project/base.rb +79 -0
  105. data/lib/power_stencil/project/config.rb +54 -0
  106. data/lib/power_stencil/project/create.rb +30 -0
  107. data/lib/power_stencil/project/info.rb +72 -0
  108. data/lib/power_stencil/project/paths.rb +119 -0
  109. data/lib/power_stencil/project/plugins.rb +89 -0
  110. data/lib/power_stencil/project/proxy.rb +13 -0
  111. data/lib/power_stencil/project/templates.rb +56 -0
  112. data/lib/power_stencil/project/versioning.rb +29 -0
  113. data/lib/power_stencil/system_entity_definitions/all.rb +14 -0
  114. data/lib/power_stencil/system_entity_definitions/buildable.rb +23 -0
  115. data/lib/power_stencil/system_entity_definitions/entity_override.rb +8 -0
  116. data/lib/power_stencil/system_entity_definitions/entity_project_common.rb +33 -0
  117. data/lib/power_stencil/system_entity_definitions/has_associated_files.rb +13 -0
  118. data/lib/power_stencil/system_entity_definitions/non_persistent.rb +14 -0
  119. data/lib/power_stencil/system_entity_definitions/plugin.rb +17 -0
  120. data/lib/power_stencil/system_entity_definitions/process_descriptor.rb +15 -0
  121. data/lib/power_stencil/system_entity_definitions/project_config.rb +24 -0
  122. data/lib/power_stencil/system_entity_definitions/project_entity.rb +16 -0
  123. data/lib/power_stencil/system_entity_definitions/simple_exec.rb +47 -0
  124. data/lib/power_stencil/utils/directory_processor.rb +54 -0
  125. data/lib/power_stencil/utils/file_edit.rb +87 -0
  126. data/lib/power_stencil/utils/file_helper.rb +56 -0
  127. data/lib/power_stencil/utils/gem_utils.rb +13 -0
  128. data/lib/power_stencil/utils/secure_require.rb +26 -0
  129. data/lib/power_stencil/utils/semantic_version.rb +128 -0
  130. data/lib/power_stencil/version.rb +3 -0
  131. data/power_stencil.gemspec +32 -0
  132. metadata +287 -0
@@ -0,0 +1,375 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="246.6871mm"
13
+ height="153.63528mm"
14
+ viewBox="0 0 246.68711 153.63528"
15
+ version="1.1"
16
+ id="svg8"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="power-stencil-entity-creation.svg">
19
+ <title
20
+ id="title1457">PowerStencil entity creation flow description</title>
21
+ <defs
22
+ id="defs2">
23
+ <marker
24
+ inkscape:isstock="true"
25
+ style="overflow:visible"
26
+ id="marker1231"
27
+ refX="0"
28
+ refY="0"
29
+ orient="auto"
30
+ inkscape:stockid="Arrow1Send">
31
+ <path
32
+ inkscape:connector-curvature="0"
33
+ transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
34
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.00000003pt;stroke-opacity:1"
35
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
36
+ id="path1229" />
37
+ </marker>
38
+ <inkscape:path-effect
39
+ only_selected="false"
40
+ apply_with_weight="true"
41
+ apply_no_weight="true"
42
+ helper_size="0"
43
+ steps="2"
44
+ weight="33.333333"
45
+ is_visible="true"
46
+ id="path-effect1227"
47
+ effect="bspline" />
48
+ <marker
49
+ inkscape:stockid="Arrow1Send"
50
+ orient="auto"
51
+ refY="0"
52
+ refX="0"
53
+ id="Arrow1Send"
54
+ style="overflow:visible"
55
+ inkscape:isstock="true"
56
+ inkscape:collect="always">
57
+ <path
58
+ id="path1098"
59
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
60
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.00000003pt;stroke-opacity:1"
61
+ transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
62
+ inkscape:connector-curvature="0" />
63
+ </marker>
64
+ <marker
65
+ inkscape:stockid="Arrow1Lend"
66
+ orient="auto"
67
+ refY="0"
68
+ refX="0"
69
+ id="Arrow1Lend"
70
+ style="overflow:visible"
71
+ inkscape:isstock="true">
72
+ <path
73
+ id="path1086"
74
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
75
+ style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.00000003pt;stroke-opacity:1"
76
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
77
+ inkscape:connector-curvature="0" />
78
+ </marker>
79
+ <inkscape:path-effect
80
+ effect="bspline"
81
+ id="path-effect1081"
82
+ is_visible="true"
83
+ weight="33.333333"
84
+ steps="2"
85
+ helper_size="0"
86
+ apply_no_weight="true"
87
+ apply_with_weight="true"
88
+ only_selected="false" />
89
+ </defs>
90
+ <sodipodi:namedview
91
+ id="base"
92
+ pagecolor="#ffffff"
93
+ bordercolor="#666666"
94
+ borderopacity="1.0"
95
+ inkscape:pageopacity="0.0"
96
+ inkscape:pageshadow="2"
97
+ inkscape:zoom="0.7"
98
+ inkscape:cx="530.80204"
99
+ inkscape:cy="231.40443"
100
+ inkscape:document-units="mm"
101
+ inkscape:current-layer="layer1"
102
+ showgrid="false"
103
+ inkscape:window-width="1920"
104
+ inkscape:window-height="1141"
105
+ inkscape:window-x="0"
106
+ inkscape:window-y="31"
107
+ inkscape:window-maximized="1"
108
+ fit-margin-top="10"
109
+ fit-margin-left="10"
110
+ fit-margin-right="10"
111
+ fit-margin-bottom="10" />
112
+ <metadata
113
+ id="metadata5">
114
+ <rdf:RDF>
115
+ <cc:Work
116
+ rdf:about="">
117
+ <dc:format>image/svg+xml</dc:format>
118
+ <dc:type
119
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
120
+ <dc:title>PowerStencil entity creation flow description</dc:title>
121
+ <dc:creator>
122
+ <cc:Agent>
123
+ <dc:title>L.Briais</dc:title>
124
+ </cc:Agent>
125
+ </dc:creator>
126
+ </cc:Work>
127
+ </rdf:RDF>
128
+ </metadata>
129
+ <g
130
+ inkscape:label="Calque 1"
131
+ inkscape:groupmode="layer"
132
+ id="layer1"
133
+ transform="translate(13.469479,-90.846419)">
134
+ <rect
135
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:0;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:1.00654888;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.02619566, 4.02619566;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
136
+ id="rect927"
137
+ width="225.68056"
138
+ height="132.62874"
139
+ x="-2.9662042"
140
+ y="101.34969"
141
+ ry="5.5490241" />
142
+ <path
143
+ inkscape:original-d="m 66.030921,191.14748 c 20.219814,-6.66165 40.439659,-13.32303 60.659529,-19.98415"
144
+ inkscape:path-effect="#path-effect1227"
145
+ inkscape:connector-curvature="0"
146
+ id="path1225"
147
+ d="m 66.030921,191.14748 c 20.219896,-6.6614 40.439739,-13.32278 60.659529,-19.98415"
148
+ style="fill:#4d4d4d;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.88228047;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker1231)" />
149
+ <path
150
+ style="fill:#4d4d4d;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.88228047;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Send)"
151
+ d="m 66.030921,151.17918 c 20.219896,6.6614 40.439739,13.32278 60.659529,19.98415"
152
+ id="path1079"
153
+ inkscape:connector-curvature="0"
154
+ inkscape:path-effect="#path-effect1081"
155
+ inkscape:original-d="m 66.030921,151.17918 c 20.219814,6.66165 40.439659,13.32303 60.659529,19.98415" />
156
+ <text
157
+ xml:space="preserve"
158
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
159
+ x="5.2615628"
160
+ y="110.55138"
161
+ id="text1006-9"><tspan
162
+ sodipodi:role="line"
163
+ x="5.2615628"
164
+ y="110.55138"
165
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#999999;stroke-width:0.26458332px"
166
+ id="tspan1026">Entity creation process (power_stencil create)</tspan></text>
167
+ <flowRoot
168
+ transform="matrix(0.26458333,0,0,0.26458333,-29.067848,94.304276)"
169
+ style="font-style:normal;font-weight:normal;font-size:17.5px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
170
+ id="flowRoot943"
171
+ xml:space="preserve"><flowRegion
172
+ id="flowRegion945"><rect
173
+ y="246.12077"
174
+ x="47.142857"
175
+ height="421.42856"
176
+ width="457.14285"
177
+ id="rect947" /></flowRegion><flowPara
178
+ id="flowPara949" /></flowRoot> <g
179
+ id="g947">
180
+ <g
181
+ id="g935">
182
+ <rect
183
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7077052;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
184
+ id="rect1062"
185
+ width="87.226822"
186
+ height="21.836939"
187
+ x="6.0404544"
188
+ y="117.57639"
189
+ ry="1.7865629" />
190
+ <text
191
+ xml:space="preserve"
192
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
193
+ x="49.530651"
194
+ y="126.86028"
195
+ id="text819"><tspan
196
+ sodipodi:role="line"
197
+ x="49.530651"
198
+ y="126.86028"
199
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
200
+ id="tspan865">System</tspan><tspan
201
+ id="tspan951"
202
+ sodipodi:role="line"
203
+ x="49.530651"
204
+ y="132.64804"
205
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px">Entity Types</tspan></text>
206
+ </g>
207
+ <g
208
+ transform="translate(5.5839621,6.8035714)"
209
+ id="g1080">
210
+ <rect
211
+ ry="1.7865629"
212
+ y="132.60976"
213
+ x="0.45649999"
214
+ height="21.836939"
215
+ width="87.226822"
216
+ id="rect1060"
217
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#c8e1c8;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7077052;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
218
+ <text
219
+ xml:space="preserve"
220
+ style="font-style:normal;font-weight:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
221
+ x="6.5692902"
222
+ y="138.95341"
223
+ id="text819-4"><tspan
224
+ sodipodi:role="line"
225
+ x="6.5692902"
226
+ y="138.95341"
227
+ style="stroke-width:0.26458332px"
228
+ id="tspan865-8">templates-templates stored</tspan><tspan
229
+ id="tspan951-5"
230
+ sodipodi:role="line"
231
+ x="6.5692902"
232
+ y="144.74118"
233
+ style="stroke-width:0.26458332px">in PowerStencil Gem</tspan></text>
234
+ </g>
235
+ </g>
236
+ <g
237
+ id="g1265">
238
+ <g
239
+ transform="translate(-81.557176,70.303571)"
240
+ id="g1087">
241
+ <rect
242
+ ry="1.7865629"
243
+ y="132.60976"
244
+ x="87.683319"
245
+ height="21.836939"
246
+ width="87.226822"
247
+ id="rect933"
248
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#c8e1c8;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7077052;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
249
+ <text
250
+ id="text937"
251
+ y="138.95341"
252
+ x="93.796112"
253
+ style="font-style:normal;font-weight:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
254
+ xml:space="preserve"><tspan
255
+ id="tspan941"
256
+ style="stroke-width:0.26458332px"
257
+ y="138.95341"
258
+ x="93.796112"
259
+ sodipodi:role="line">templates-templates</tspan><tspan
260
+ id="tspan1007"
261
+ style="stroke-width:0.26458332px"
262
+ y="144.74118"
263
+ x="93.796112"
264
+ sodipodi:role="line">within project in </tspan><tspan
265
+ id="tspan1009"
266
+ style="stroke-width:0.26458332px"
267
+ y="150.52893"
268
+ x="93.796112"
269
+ sodipodi:role="line">.ps_project/templates-templates</tspan></text>
270
+ </g>
271
+ <g
272
+ transform="translate(-63.122026,6.511274)"
273
+ id="g1068">
274
+ <rect
275
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7077052;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
276
+ id="rect1058"
277
+ width="87.226822"
278
+ height="21.836939"
279
+ x="69.248169"
280
+ y="174.56511"
281
+ ry="1.7865629" />
282
+ <text
283
+ id="text1017"
284
+ y="183.84898"
285
+ x="112.80054"
286
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
287
+ xml:space="preserve"><tspan
288
+ id="tspan1013"
289
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
290
+ y="183.84898"
291
+ x="112.80054"
292
+ sodipodi:role="line">Custom Project</tspan><tspan
293
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
294
+ y="189.63675"
295
+ x="112.80054"
296
+ sodipodi:role="line"
297
+ id="tspan1015">Entity Types</tspan></text>
298
+ </g>
299
+ </g>
300
+ <g
301
+ id="g1074-5"
302
+ transform="translate(54.418475,47.33271)">
303
+ <g
304
+ id="g911">
305
+ <g
306
+ id="g1149"
307
+ transform="translate(-15.411332,-8.7791363)"
308
+ style="">
309
+ <rect
310
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#c8e1c8;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7077052;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
311
+ id="rect1139"
312
+ width="87.226822"
313
+ height="21.836939"
314
+ x="87.683319"
315
+ y="132.60976"
316
+ ry="1.7865629" />
317
+ <text
318
+ xml:space="preserve"
319
+ style="font-style:normal;font-weight:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
320
+ x="93.796112"
321
+ y="138.95341"
322
+ id="text1147"><tspan
323
+ sodipodi:role="line"
324
+ x="93.796112"
325
+ y="138.95341"
326
+ style="stroke-width:0.26458332px"
327
+ id="tspan1143">templates in project in </tspan><tspan
328
+ sodipodi:role="line"
329
+ x="93.796112"
330
+ y="144.74118"
331
+ style="stroke-width:0.26458332px"
332
+ id="tspan1145">&lt;entity_type&gt;/&lt;entity_name&gt;</tspan></text>
333
+ </g>
334
+ <g
335
+ id="g892">
336
+ <rect
337
+ ry="1.7865629"
338
+ y="101.99368"
339
+ x="72.27198"
340
+ height="21.836939"
341
+ width="87.226822"
342
+ id="rect1062-3"
343
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7077052;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
344
+ <text
345
+ id="text819-3"
346
+ y="110.46727"
347
+ x="115.78365"
348
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
349
+ xml:space="preserve"><tspan
350
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.26458332px"
351
+ y="110.46727"
352
+ x="115.78365"
353
+ sodipodi:role="line"
354
+ id="tspan951-7">Project Entities</tspan></text>
355
+ <text
356
+ xml:space="preserve"
357
+ style="font-style:normal;font-weight:normal;font-size:2.72649646px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.15579979px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
358
+ x="115.86675"
359
+ y="115.04259"
360
+ id="text882"><tspan
361
+ sodipodi:role="line"
362
+ id="tspan880"
363
+ x="116.30076"
364
+ y="115.04259"
365
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.72649646px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.15579979px">Stored in </tspan><tspan
366
+ sodipodi:role="line"
367
+ x="115.86675"
368
+ y="118.45071"
369
+ style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:2.72649646px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;stroke-width:0.15579979px"
370
+ id="tspan884">.ps_project/entities/&lt;entity_type&gt;/&lt;entity_name&gt;.yaml</tspan></text>
371
+ </g>
372
+ </g>
373
+ </g>
374
+ </g>
375
+ </svg>
@@ -0,0 +1,265 @@
1
+ <?xml version="1.0" encoding="UTF-8" standalone="no"?>
2
+ <!-- Created with Inkscape (http://www.inkscape.org/) -->
3
+
4
+ <svg
5
+ xmlns:dc="http://purl.org/dc/elements/1.1/"
6
+ xmlns:cc="http://creativecommons.org/ns#"
7
+ xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
8
+ xmlns:svg="http://www.w3.org/2000/svg"
9
+ xmlns="http://www.w3.org/2000/svg"
10
+ xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
11
+ xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
12
+ width="340.14127mm"
13
+ height="55.292072mm"
14
+ viewBox="0 0 340.14127 55.292072"
15
+ version="1.1"
16
+ id="svg8"
17
+ inkscape:version="0.92.3 (2405546, 2018-03-11)"
18
+ sodipodi:docname="power-stencil-simple-flow.svg">
19
+ <title
20
+ id="title1457">PowerStencil simple flow description</title>
21
+ <defs
22
+ id="defs2">
23
+ <marker
24
+ inkscape:stockid="Arrow1Send"
25
+ orient="auto"
26
+ refY="0"
27
+ refX="0"
28
+ id="Arrow1Send"
29
+ style="overflow:visible"
30
+ inkscape:isstock="true">
31
+ <path
32
+ id="path1098"
33
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
34
+ style="fill:#4d4d4d;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.00000003pt;stroke-opacity:1"
35
+ transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
36
+ inkscape:connector-curvature="0" />
37
+ </marker>
38
+ <marker
39
+ inkscape:stockid="Arrow1Lend"
40
+ orient="auto"
41
+ refY="0"
42
+ refX="0"
43
+ id="Arrow1Lend"
44
+ style="overflow:visible"
45
+ inkscape:isstock="true">
46
+ <path
47
+ id="path1086"
48
+ d="M 0,0 5,-5 -12.5,0 5,5 Z"
49
+ style="fill:#333333;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1.00000003pt;stroke-opacity:1"
50
+ transform="matrix(-0.8,0,0,-0.8,-10,0)"
51
+ inkscape:connector-curvature="0" />
52
+ </marker>
53
+ <inkscape:path-effect
54
+ effect="bspline"
55
+ id="path-effect1081"
56
+ is_visible="true"
57
+ weight="33.333333"
58
+ steps="2"
59
+ helper_size="0"
60
+ apply_no_weight="true"
61
+ apply_with_weight="true"
62
+ only_selected="false" />
63
+ </defs>
64
+ <sodipodi:namedview
65
+ id="base"
66
+ pagecolor="#ffffff"
67
+ bordercolor="#666666"
68
+ borderopacity="1.0"
69
+ inkscape:pageopacity="0.0"
70
+ inkscape:pageshadow="2"
71
+ inkscape:zoom="0.7"
72
+ inkscape:cx="641.18508"
73
+ inkscape:cy="2.7826171"
74
+ inkscape:document-units="mm"
75
+ inkscape:current-layer="layer1"
76
+ showgrid="false"
77
+ inkscape:window-width="1920"
78
+ inkscape:window-height="1141"
79
+ inkscape:window-x="0"
80
+ inkscape:window-y="31"
81
+ inkscape:window-maximized="1"
82
+ fit-margin-top="10"
83
+ fit-margin-left="10"
84
+ fit-margin-right="10"
85
+ fit-margin-bottom="10" />
86
+ <metadata
87
+ id="metadata5">
88
+ <rdf:RDF>
89
+ <cc:Work
90
+ rdf:about="">
91
+ <dc:format>image/svg+xml</dc:format>
92
+ <dc:type
93
+ rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
94
+ <dc:title>PowerStencil simple flow description</dc:title>
95
+ <dc:creator>
96
+ <cc:Agent>
97
+ <dc:title>L.Briais</dc:title>
98
+ </cc:Agent>
99
+ </dc:creator>
100
+ </cc:Work>
101
+ </rdf:RDF>
102
+ </metadata>
103
+ <g
104
+ inkscape:label="Calque 1"
105
+ inkscape:groupmode="layer"
106
+ id="layer1"
107
+ transform="translate(30.579753,-38.363802)">
108
+ <rect
109
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:0;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:1.00654888;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.02619566, 4.02619566;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
110
+ id="rect927"
111
+ width="202.58376"
112
+ height="33.93668"
113
+ x="75.10601"
114
+ y="49.020126"
115
+ ry="3.7410421" />
116
+ <rect
117
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:0;fill-rule:evenodd;stroke:#b3b3b3;stroke-width:1.00654888;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:4.02619566, 4.02619566;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate"
118
+ id="rect927-7"
119
+ width="69.897194"
120
+ height="34.285522"
121
+ x="-4.7348213"
122
+ y="48.867077"
123
+ ry="3.7794967" />
124
+ <path
125
+ style="fill:#4d4d4d;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:4.16499996;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Send)"
126
+ d="m -20.579753,67.932995 c 104.23538,0 208.470493,0 312.705333,0"
127
+ id="path1079"
128
+ inkscape:connector-curvature="0"
129
+ inkscape:path-effect="#path-effect1081"
130
+ inkscape:original-d="m -20.579753,67.932995 c 104.23538,-2.64e-4 208.470493,-2.64e-4 312.705333,0" />
131
+ <g
132
+ id="g948">
133
+ <rect
134
+ ry="1.3100638"
135
+ y="59.92662"
136
+ x="2.6126425"
137
+ height="16.012749"
138
+ width="55.700253"
139
+ id="rect815"
140
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.48427609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
141
+ <text
142
+ id="text819"
143
+ y="66.31649"
144
+ x="10.098216"
145
+ style="font-style:normal;font-weight:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
146
+ xml:space="preserve"><tspan
147
+ id="tspan821"
148
+ style="stroke-width:0.26458332px"
149
+ y="66.31649"
150
+ x="10.098216"
151
+ sodipodi:role="line">Project </tspan><tspan
152
+ id="tspan865"
153
+ style="stroke-width:0.26458332px"
154
+ y="72.104248"
155
+ x="10.098216"
156
+ sodipodi:role="line">Templates &amp; Data</tspan></text>
157
+ </g>
158
+ <g
159
+ id="g954"
160
+ transform="translate(-2.9812257e-6,-0.76938629)">
161
+ <rect
162
+ ry="1.3100638"
163
+ y="60.696007"
164
+ x="81.007019"
165
+ height="16.012749"
166
+ width="55.700253"
167
+ id="rect815-6"
168
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.48427609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
169
+ <text
170
+ id="text819-2"
171
+ y="67.085876"
172
+ x="82.828049"
173
+ style="font-style:normal;font-weight:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
174
+ xml:space="preserve"><tspan
175
+ id="tspan821-7"
176
+ style="stroke-width:0.26458332px"
177
+ y="67.085876"
178
+ x="82.828049"
179
+ sodipodi:role="line">PowerStencil</tspan><tspan
180
+ id="tspan861"
181
+ style="stroke-width:0.26458332px"
182
+ y="72.873634"
183
+ x="82.828049"
184
+ sodipodi:role="line">Core actions &amp; Plugins</tspan></text>
185
+ </g>
186
+ <g
187
+ id="g960"
188
+ transform="translate(-1.3073388,-1.5253372)">
189
+ <rect
190
+ ry="1.3100638"
191
+ y="61.451958"
192
+ x="146.01892"
193
+ height="16.012749"
194
+ width="55.700253"
195
+ id="rect815-6-9"
196
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#a7c2db;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.48427609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
197
+ <text
198
+ id="text819-2-3"
199
+ y="68.290604"
200
+ x="159.57373"
201
+ style="font-style:normal;font-weight:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
202
+ xml:space="preserve"><tspan
203
+ id="tspan821-7-9"
204
+ style="stroke-width:0.26458332px"
205
+ y="68.290604"
206
+ x="159.57373"
207
+ sodipodi:role="line">Generated</tspan><tspan
208
+ id="tspan861-2"
209
+ style="stroke-width:0.26458332px"
210
+ y="74.078362"
211
+ x="159.57373"
212
+ sodipodi:role="line">Files &amp; Code</tspan></text>
213
+ </g>
214
+ <g
215
+ id="g1077"
216
+ transform="translate(2.2510687e-6)">
217
+ <rect
218
+ ry="1.3075371"
219
+ y="59.942062"
220
+ x="208.43158"
221
+ height="15.981865"
222
+ width="63.152916"
223
+ id="rect815-6-9-8"
224
+ style="color:#000000;clip-rule:nonzero;display:inline;overflow:visible;visibility:visible;opacity:1;isolation:auto;mix-blend-mode:normal;color-interpolation:sRGB;color-interpolation-filters:linearRGB;solid-color:#000000;solid-opacity:1;vector-effect:none;fill:#ccd7e2;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.51515979;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;enable-background:accumulate" />
225
+ <text
226
+ id="text819-2-3-3"
227
+ y="66.316498"
228
+ x="210.64307"
229
+ style="font-style:normal;font-weight:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
230
+ xml:space="preserve"><tspan
231
+ id="tspan921"
232
+ style="stroke-width:0.26458332px"
233
+ y="66.316498"
234
+ x="210.64307"
235
+ sodipodi:role="line">Optionally triggers action</tspan><tspan
236
+ id="tspan925"
237
+ style="stroke-width:0.26458332px"
238
+ y="72.104256"
239
+ x="210.64307"
240
+ sodipodi:role="line">on generated files</tspan></text>
241
+ </g>
242
+ <text
243
+ xml:space="preserve"
244
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
245
+ x="2.1105075"
246
+ y="55.366859"
247
+ id="text1006"><tspan
248
+ sodipodi:role="line"
249
+ id="tspan1004"
250
+ x="2.1105075"
251
+ y="55.366859"
252
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#999999;stroke-width:0.26458332px">Git repository</tspan></text>
253
+ <text
254
+ xml:space="preserve"
255
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#999999;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
256
+ x="80.534271"
257
+ y="55.366859"
258
+ id="text1006-9"><tspan
259
+ sodipodi:role="line"
260
+ x="80.534271"
261
+ y="55.366859"
262
+ style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.63020849px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Bold';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;fill:#999999;stroke-width:0.26458332px"
263
+ id="tspan1026">Build process</tspan></text>
264
+ </g>
265
+ </svg>