power_stencil 0.3.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +13 -0
- data/.rspec +2 -0
- data/.travis.yml +5 -0
- data/CODE_OF_CONDUCT.md +74 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +21 -0
- data/README.md +194 -0
- data/Rakefile +6 -0
- data/bin/console +14 -0
- data/bin/setup +8 -0
- data/bin/update_plugin_template +79 -0
- data/doc/builds.md +267 -0
- data/doc/entities.md +964 -0
- data/doc/example_use_cases.md +59 -0
- data/doc/images/power-stencil-architecture.svg +151 -0
- data/doc/images/power-stencil-entity-build.svg +481 -0
- data/doc/images/power-stencil-entity-creation.svg +375 -0
- data/doc/images/power-stencil-project-overview.svg +2534 -0
- data/doc/images/power-stencil-simple-flow.svg +265 -0
- data/doc/plugins.md +169 -0
- data/doc/templates.md +332 -0
- data/etc/base_commands_definition.yml +259 -0
- data/etc/meta_templates/plugin_seed/etc/command_line.yaml +12 -0
- data/etc/meta_templates/plugin_seed/etc/plugin_config.yaml +4 -0
- data/etc/meta_templates/plugin_seed/etc/templates/.git_keep +0 -0
- data/etc/meta_templates/plugin_seed/lib/{entity}.rb.erb +34 -0
- data/etc/meta_templates/plugin_seed/lib/{entity}/entity_definitions/{entity}_entity.rb.erb +11 -0
- data/etc/meta_templates/plugin_seed/lib/{entity}/plugin_helper.rb.erb +17 -0
- data/etc/meta_templates/plugin_seed/lib/{entity}/version.rb.erb +3 -0
- data/etc/meta_templates/plugin_seed/lib/{entity}/{entity}_processor.rb.erb +19 -0
- data/etc/meta_templates/plugin_seed/psplugin_{entity}.gemspec +36 -0
- data/etc/power_stencil.yaml +92 -0
- data/etc/templates/plugin_definition/.gitignore +11 -0
- data/etc/templates/plugin_definition/.rspec +3 -0
- data/etc/templates/plugin_definition/.travis.yml +5 -0
- data/etc/templates/plugin_definition/CODE_OF_CONDUCT.md +74 -0
- data/etc/templates/plugin_definition/Gemfile +6 -0
- data/etc/templates/plugin_definition/LICENSE.txt +21 -0
- data/etc/templates/plugin_definition/README.md +43 -0
- data/etc/templates/plugin_definition/Rakefile +6 -0
- data/etc/templates/plugin_definition/bin/console +14 -0
- data/etc/templates/plugin_definition/bin/setup +8 -0
- data/etc/templates/plugin_definition/etc/command_line.yaml +12 -0
- data/etc/templates/plugin_definition/etc/plugin_config.yaml +4 -0
- data/etc/templates/plugin_definition/etc/templates/.git_keep +1 -0
- data/etc/templates/plugin_definition/lib/{entity}.rb.erb +34 -0
- data/etc/templates/plugin_definition/lib/{entity}/entity_definitions/{entity}_entity.rb.erb +11 -0
- data/etc/templates/plugin_definition/lib/{entity}/plugin_helper.rb.erb +17 -0
- data/etc/templates/plugin_definition/lib/{entity}/version.rb.erb +3 -0
- data/etc/templates/plugin_definition/lib/{entity}/{entity}_processor.rb.erb +19 -0
- data/etc/templates/plugin_definition/psplugin_{entity}.gemspec +36 -0
- data/etc/templates/plugin_definition/spec/spec_helper.rb +14 -0
- data/etc/templates/plugin_definition/spec/{entity}_spec.rb +9 -0
- data/etc/templates/project/.copy_ignore +2 -0
- data/etc/templates/project/.gitignore.erb +6 -0
- data/etc/templates/project/.ps_project/entities/.gitkeep +0 -0
- data/etc/templates/project/.ps_project/entities/README.md +11 -0
- data/etc/templates/project/.ps_project/entity_definitions/.gitkeep +0 -0
- data/etc/templates/project/.ps_project/entity_definitions/README.md +15 -0
- data/etc/templates/project/.ps_project/personal-config.yaml +8 -0
- data/etc/templates/project/.ps_project/plugins/.gitkeep +0 -0
- data/etc/templates/project/.ps_project/templates-templates/.gitkeep +0 -0
- data/etc/templates/project/.ps_project/templates-templates/README.md +13 -0
- data/etc/templates/project/.ps_project/user_entities/.gitkeep +0 -0
- data/etc/templates/project/.ps_project/user_entities/README.md +12 -0
- data/etc/templates/project/.ps_project/versioned-config.yaml +6 -0
- data/etc/templates/simple_exec/main.sh +4 -0
- data/exe/power_stencil +28 -0
- data/lib/power_stencil.rb +53 -0
- data/lib/power_stencil/command_processors/build.rb +43 -0
- data/lib/power_stencil/command_processors/check.rb +35 -0
- data/lib/power_stencil/command_processors/create.rb +70 -0
- data/lib/power_stencil/command_processors/delete.rb +38 -0
- data/lib/power_stencil/command_processors/edit.rb +35 -0
- data/lib/power_stencil/command_processors/entity_helper.rb +105 -0
- data/lib/power_stencil/command_processors/get.rb +22 -0
- data/lib/power_stencil/command_processors/info.rb +41 -0
- data/lib/power_stencil/command_processors/init.rb +47 -0
- data/lib/power_stencil/command_processors/new_plugin.rb +31 -0
- data/lib/power_stencil/command_processors/root.rb +27 -0
- data/lib/power_stencil/command_processors/shell.rb +37 -0
- data/lib/power_stencil/command_processors/trace_helper.rb +20 -0
- data/lib/power_stencil/dsl/base.rb +24 -0
- data/lib/power_stencil/dsl/entities.rb +46 -0
- data/lib/power_stencil/dsl/plugin_generation.rb +17 -0
- data/lib/power_stencil/engine/base.rb +50 -0
- data/lib/power_stencil/engine/build_handling.rb +77 -0
- data/lib/power_stencil/engine/directory_processor.rb +111 -0
- data/lib/power_stencil/engine/entities_definitions.rb +42 -0
- data/lib/power_stencil/engine/entities_handling.rb +76 -0
- data/lib/power_stencil/engine/entity_engine.rb +20 -0
- data/lib/power_stencil/engine/init_engine.rb +18 -0
- data/lib/power_stencil/engine/project_engine.rb +75 -0
- data/lib/power_stencil/engine/renderers/erb.rb +21 -0
- data/lib/power_stencil/error.rb +20 -0
- data/lib/power_stencil/initializer.rb +87 -0
- data/lib/power_stencil/plugins/base.rb +54 -0
- data/lib/power_stencil/plugins/capabilities.rb +30 -0
- data/lib/power_stencil/plugins/command_line.rb +27 -0
- data/lib/power_stencil/plugins/config.rb +32 -0
- data/lib/power_stencil/plugins/dependencies.rb +32 -0
- data/lib/power_stencil/plugins/gem.rb +57 -0
- data/lib/power_stencil/plugins/require.rb +77 -0
- data/lib/power_stencil/plugins/templates.rb +21 -0
- data/lib/power_stencil/project/base.rb +79 -0
- data/lib/power_stencil/project/config.rb +54 -0
- data/lib/power_stencil/project/create.rb +30 -0
- data/lib/power_stencil/project/info.rb +72 -0
- data/lib/power_stencil/project/paths.rb +119 -0
- data/lib/power_stencil/project/plugins.rb +89 -0
- data/lib/power_stencil/project/proxy.rb +13 -0
- data/lib/power_stencil/project/templates.rb +56 -0
- data/lib/power_stencil/project/versioning.rb +29 -0
- data/lib/power_stencil/system_entity_definitions/all.rb +14 -0
- data/lib/power_stencil/system_entity_definitions/buildable.rb +23 -0
- data/lib/power_stencil/system_entity_definitions/entity_override.rb +8 -0
- data/lib/power_stencil/system_entity_definitions/entity_project_common.rb +33 -0
- data/lib/power_stencil/system_entity_definitions/has_associated_files.rb +13 -0
- data/lib/power_stencil/system_entity_definitions/non_persistent.rb +14 -0
- data/lib/power_stencil/system_entity_definitions/plugin.rb +17 -0
- data/lib/power_stencil/system_entity_definitions/process_descriptor.rb +15 -0
- data/lib/power_stencil/system_entity_definitions/project_config.rb +24 -0
- data/lib/power_stencil/system_entity_definitions/project_entity.rb +16 -0
- data/lib/power_stencil/system_entity_definitions/simple_exec.rb +47 -0
- data/lib/power_stencil/utils/directory_processor.rb +54 -0
- data/lib/power_stencil/utils/file_edit.rb +87 -0
- data/lib/power_stencil/utils/file_helper.rb +56 -0
- data/lib/power_stencil/utils/gem_utils.rb +13 -0
- data/lib/power_stencil/utils/secure_require.rb +26 -0
- data/lib/power_stencil/utils/semantic_version.rb +128 -0
- data/lib/power_stencil/version.rb +3 -0
- data/power_stencil.gemspec +32 -0
- metadata +287 -0
@@ -0,0 +1,32 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'power_stencil/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'power_stencil'
|
8
|
+
spec.version = PowerStencil::VERSION
|
9
|
+
spec.authors = ['Laurent B.']
|
10
|
+
spec.email = ['lbnetid+rb@gmail.com']
|
11
|
+
|
12
|
+
spec.summary = %q{A powerful templating engine for CLI based test_project.}
|
13
|
+
spec.description = %q{A powerful templating engine for CLI based test_project.}
|
14
|
+
spec.homepage = 'https://gitlab.com/tools4devops/power_stencil'
|
15
|
+
spec.license = 'MIT'
|
16
|
+
|
17
|
+
spec.files = `git ls-files -z`.split("\x0").reject do |f|
|
18
|
+
f.match(%r{^(test|spec|features)/})
|
19
|
+
end
|
20
|
+
spec.bindir = 'exe'
|
21
|
+
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
22
|
+
spec.require_paths = ['lib']
|
23
|
+
|
24
|
+
spec.add_development_dependency 'bundler', '~> 2.0'
|
25
|
+
spec.add_development_dependency 'rake', '~> 10.0'
|
26
|
+
spec.add_development_dependency 'rspec', '~> 3.0'
|
27
|
+
|
28
|
+
spec.add_dependency 'climatic', '~> 0.2', '>= 0.2.26'
|
29
|
+
spec.add_dependency 'dir_glob_ignore', '~> 0.3'
|
30
|
+
spec.add_dependency 'universe_compiler', '~> 0.2', '>= 0.2.11'
|
31
|
+
spec.add_dependency 'pry'
|
32
|
+
end
|
metadata
ADDED
@@ -0,0 +1,287 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: power_stencil
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.3.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Laurent B.
|
8
|
+
autorequire:
|
9
|
+
bindir: exe
|
10
|
+
cert_chain: []
|
11
|
+
date: 2019-08-28 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: bundler
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '2.0'
|
20
|
+
type: :development
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - "~>"
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '2.0'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: rake
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - "~>"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '10.0'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - "~>"
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '10.0'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rspec
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - "~>"
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '3.0'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - "~>"
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '3.0'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: climatic
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - "~>"
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '0.2'
|
62
|
+
- - ">="
|
63
|
+
- !ruby/object:Gem::Version
|
64
|
+
version: 0.2.26
|
65
|
+
type: :runtime
|
66
|
+
prerelease: false
|
67
|
+
version_requirements: !ruby/object:Gem::Requirement
|
68
|
+
requirements:
|
69
|
+
- - "~>"
|
70
|
+
- !ruby/object:Gem::Version
|
71
|
+
version: '0.2'
|
72
|
+
- - ">="
|
73
|
+
- !ruby/object:Gem::Version
|
74
|
+
version: 0.2.26
|
75
|
+
- !ruby/object:Gem::Dependency
|
76
|
+
name: dir_glob_ignore
|
77
|
+
requirement: !ruby/object:Gem::Requirement
|
78
|
+
requirements:
|
79
|
+
- - "~>"
|
80
|
+
- !ruby/object:Gem::Version
|
81
|
+
version: '0.3'
|
82
|
+
type: :runtime
|
83
|
+
prerelease: false
|
84
|
+
version_requirements: !ruby/object:Gem::Requirement
|
85
|
+
requirements:
|
86
|
+
- - "~>"
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: '0.3'
|
89
|
+
- !ruby/object:Gem::Dependency
|
90
|
+
name: universe_compiler
|
91
|
+
requirement: !ruby/object:Gem::Requirement
|
92
|
+
requirements:
|
93
|
+
- - "~>"
|
94
|
+
- !ruby/object:Gem::Version
|
95
|
+
version: '0.2'
|
96
|
+
- - ">="
|
97
|
+
- !ruby/object:Gem::Version
|
98
|
+
version: 0.2.11
|
99
|
+
type: :runtime
|
100
|
+
prerelease: false
|
101
|
+
version_requirements: !ruby/object:Gem::Requirement
|
102
|
+
requirements:
|
103
|
+
- - "~>"
|
104
|
+
- !ruby/object:Gem::Version
|
105
|
+
version: '0.2'
|
106
|
+
- - ">="
|
107
|
+
- !ruby/object:Gem::Version
|
108
|
+
version: 0.2.11
|
109
|
+
- !ruby/object:Gem::Dependency
|
110
|
+
name: pry
|
111
|
+
requirement: !ruby/object:Gem::Requirement
|
112
|
+
requirements:
|
113
|
+
- - ">="
|
114
|
+
- !ruby/object:Gem::Version
|
115
|
+
version: '0'
|
116
|
+
type: :runtime
|
117
|
+
prerelease: false
|
118
|
+
version_requirements: !ruby/object:Gem::Requirement
|
119
|
+
requirements:
|
120
|
+
- - ">="
|
121
|
+
- !ruby/object:Gem::Version
|
122
|
+
version: '0'
|
123
|
+
description: A powerful templating engine for CLI based test_project.
|
124
|
+
email:
|
125
|
+
- lbnetid+rb@gmail.com
|
126
|
+
executables:
|
127
|
+
- power_stencil
|
128
|
+
extensions: []
|
129
|
+
extra_rdoc_files: []
|
130
|
+
files:
|
131
|
+
- ".gitignore"
|
132
|
+
- ".rspec"
|
133
|
+
- ".travis.yml"
|
134
|
+
- CODE_OF_CONDUCT.md
|
135
|
+
- Gemfile
|
136
|
+
- LICENSE.txt
|
137
|
+
- README.md
|
138
|
+
- Rakefile
|
139
|
+
- bin/console
|
140
|
+
- bin/setup
|
141
|
+
- bin/update_plugin_template
|
142
|
+
- doc/builds.md
|
143
|
+
- doc/entities.md
|
144
|
+
- doc/example_use_cases.md
|
145
|
+
- doc/images/power-stencil-architecture.svg
|
146
|
+
- doc/images/power-stencil-entity-build.svg
|
147
|
+
- doc/images/power-stencil-entity-creation.svg
|
148
|
+
- doc/images/power-stencil-project-overview.svg
|
149
|
+
- doc/images/power-stencil-simple-flow.svg
|
150
|
+
- doc/plugins.md
|
151
|
+
- doc/templates.md
|
152
|
+
- etc/base_commands_definition.yml
|
153
|
+
- etc/meta_templates/plugin_seed/etc/command_line.yaml
|
154
|
+
- etc/meta_templates/plugin_seed/etc/plugin_config.yaml
|
155
|
+
- etc/meta_templates/plugin_seed/etc/templates/.git_keep
|
156
|
+
- etc/meta_templates/plugin_seed/lib/{entity}.rb.erb
|
157
|
+
- etc/meta_templates/plugin_seed/lib/{entity}/entity_definitions/{entity}_entity.rb.erb
|
158
|
+
- etc/meta_templates/plugin_seed/lib/{entity}/plugin_helper.rb.erb
|
159
|
+
- etc/meta_templates/plugin_seed/lib/{entity}/version.rb.erb
|
160
|
+
- etc/meta_templates/plugin_seed/lib/{entity}/{entity}_processor.rb.erb
|
161
|
+
- etc/meta_templates/plugin_seed/psplugin_{entity}.gemspec
|
162
|
+
- etc/power_stencil.yaml
|
163
|
+
- etc/templates/plugin_definition/.gitignore
|
164
|
+
- etc/templates/plugin_definition/.rspec
|
165
|
+
- etc/templates/plugin_definition/.travis.yml
|
166
|
+
- etc/templates/plugin_definition/CODE_OF_CONDUCT.md
|
167
|
+
- etc/templates/plugin_definition/Gemfile
|
168
|
+
- etc/templates/plugin_definition/LICENSE.txt
|
169
|
+
- etc/templates/plugin_definition/README.md
|
170
|
+
- etc/templates/plugin_definition/Rakefile
|
171
|
+
- etc/templates/plugin_definition/bin/console
|
172
|
+
- etc/templates/plugin_definition/bin/setup
|
173
|
+
- etc/templates/plugin_definition/etc/command_line.yaml
|
174
|
+
- etc/templates/plugin_definition/etc/plugin_config.yaml
|
175
|
+
- etc/templates/plugin_definition/etc/templates/.git_keep
|
176
|
+
- etc/templates/plugin_definition/lib/{entity}.rb.erb
|
177
|
+
- etc/templates/plugin_definition/lib/{entity}/entity_definitions/{entity}_entity.rb.erb
|
178
|
+
- etc/templates/plugin_definition/lib/{entity}/plugin_helper.rb.erb
|
179
|
+
- etc/templates/plugin_definition/lib/{entity}/version.rb.erb
|
180
|
+
- etc/templates/plugin_definition/lib/{entity}/{entity}_processor.rb.erb
|
181
|
+
- etc/templates/plugin_definition/psplugin_{entity}.gemspec
|
182
|
+
- etc/templates/plugin_definition/spec/spec_helper.rb
|
183
|
+
- etc/templates/plugin_definition/spec/{entity}_spec.rb
|
184
|
+
- etc/templates/project/.copy_ignore
|
185
|
+
- etc/templates/project/.gitignore.erb
|
186
|
+
- etc/templates/project/.ps_project/entities/.gitkeep
|
187
|
+
- etc/templates/project/.ps_project/entities/README.md
|
188
|
+
- etc/templates/project/.ps_project/entity_definitions/.gitkeep
|
189
|
+
- etc/templates/project/.ps_project/entity_definitions/README.md
|
190
|
+
- etc/templates/project/.ps_project/personal-config.yaml
|
191
|
+
- etc/templates/project/.ps_project/plugins/.gitkeep
|
192
|
+
- etc/templates/project/.ps_project/templates-templates/.gitkeep
|
193
|
+
- etc/templates/project/.ps_project/templates-templates/README.md
|
194
|
+
- etc/templates/project/.ps_project/user_entities/.gitkeep
|
195
|
+
- etc/templates/project/.ps_project/user_entities/README.md
|
196
|
+
- etc/templates/project/.ps_project/versioned-config.yaml
|
197
|
+
- etc/templates/simple_exec/main.sh
|
198
|
+
- exe/power_stencil
|
199
|
+
- lib/power_stencil.rb
|
200
|
+
- lib/power_stencil/command_processors/build.rb
|
201
|
+
- lib/power_stencil/command_processors/check.rb
|
202
|
+
- lib/power_stencil/command_processors/create.rb
|
203
|
+
- lib/power_stencil/command_processors/delete.rb
|
204
|
+
- lib/power_stencil/command_processors/edit.rb
|
205
|
+
- lib/power_stencil/command_processors/entity_helper.rb
|
206
|
+
- lib/power_stencil/command_processors/get.rb
|
207
|
+
- lib/power_stencil/command_processors/info.rb
|
208
|
+
- lib/power_stencil/command_processors/init.rb
|
209
|
+
- lib/power_stencil/command_processors/new_plugin.rb
|
210
|
+
- lib/power_stencil/command_processors/root.rb
|
211
|
+
- lib/power_stencil/command_processors/shell.rb
|
212
|
+
- lib/power_stencil/command_processors/trace_helper.rb
|
213
|
+
- lib/power_stencil/dsl/base.rb
|
214
|
+
- lib/power_stencil/dsl/entities.rb
|
215
|
+
- lib/power_stencil/dsl/plugin_generation.rb
|
216
|
+
- lib/power_stencil/engine/base.rb
|
217
|
+
- lib/power_stencil/engine/build_handling.rb
|
218
|
+
- lib/power_stencil/engine/directory_processor.rb
|
219
|
+
- lib/power_stencil/engine/entities_definitions.rb
|
220
|
+
- lib/power_stencil/engine/entities_handling.rb
|
221
|
+
- lib/power_stencil/engine/entity_engine.rb
|
222
|
+
- lib/power_stencil/engine/init_engine.rb
|
223
|
+
- lib/power_stencil/engine/project_engine.rb
|
224
|
+
- lib/power_stencil/engine/renderers/erb.rb
|
225
|
+
- lib/power_stencil/error.rb
|
226
|
+
- lib/power_stencil/initializer.rb
|
227
|
+
- lib/power_stencil/plugins/base.rb
|
228
|
+
- lib/power_stencil/plugins/capabilities.rb
|
229
|
+
- lib/power_stencil/plugins/command_line.rb
|
230
|
+
- lib/power_stencil/plugins/config.rb
|
231
|
+
- lib/power_stencil/plugins/dependencies.rb
|
232
|
+
- lib/power_stencil/plugins/gem.rb
|
233
|
+
- lib/power_stencil/plugins/require.rb
|
234
|
+
- lib/power_stencil/plugins/templates.rb
|
235
|
+
- lib/power_stencil/project/base.rb
|
236
|
+
- lib/power_stencil/project/config.rb
|
237
|
+
- lib/power_stencil/project/create.rb
|
238
|
+
- lib/power_stencil/project/info.rb
|
239
|
+
- lib/power_stencil/project/paths.rb
|
240
|
+
- lib/power_stencil/project/plugins.rb
|
241
|
+
- lib/power_stencil/project/proxy.rb
|
242
|
+
- lib/power_stencil/project/templates.rb
|
243
|
+
- lib/power_stencil/project/versioning.rb
|
244
|
+
- lib/power_stencil/system_entity_definitions/all.rb
|
245
|
+
- lib/power_stencil/system_entity_definitions/buildable.rb
|
246
|
+
- lib/power_stencil/system_entity_definitions/entity_override.rb
|
247
|
+
- lib/power_stencil/system_entity_definitions/entity_project_common.rb
|
248
|
+
- lib/power_stencil/system_entity_definitions/has_associated_files.rb
|
249
|
+
- lib/power_stencil/system_entity_definitions/non_persistent.rb
|
250
|
+
- lib/power_stencil/system_entity_definitions/plugin.rb
|
251
|
+
- lib/power_stencil/system_entity_definitions/process_descriptor.rb
|
252
|
+
- lib/power_stencil/system_entity_definitions/project_config.rb
|
253
|
+
- lib/power_stencil/system_entity_definitions/project_entity.rb
|
254
|
+
- lib/power_stencil/system_entity_definitions/simple_exec.rb
|
255
|
+
- lib/power_stencil/utils/directory_processor.rb
|
256
|
+
- lib/power_stencil/utils/file_edit.rb
|
257
|
+
- lib/power_stencil/utils/file_helper.rb
|
258
|
+
- lib/power_stencil/utils/gem_utils.rb
|
259
|
+
- lib/power_stencil/utils/secure_require.rb
|
260
|
+
- lib/power_stencil/utils/semantic_version.rb
|
261
|
+
- lib/power_stencil/version.rb
|
262
|
+
- power_stencil.gemspec
|
263
|
+
homepage: https://gitlab.com/tools4devops/power_stencil
|
264
|
+
licenses:
|
265
|
+
- MIT
|
266
|
+
metadata: {}
|
267
|
+
post_install_message:
|
268
|
+
rdoc_options: []
|
269
|
+
require_paths:
|
270
|
+
- lib
|
271
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
272
|
+
requirements:
|
273
|
+
- - ">="
|
274
|
+
- !ruby/object:Gem::Version
|
275
|
+
version: '0'
|
276
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
277
|
+
requirements:
|
278
|
+
- - ">="
|
279
|
+
- !ruby/object:Gem::Version
|
280
|
+
version: '0'
|
281
|
+
requirements: []
|
282
|
+
rubyforge_project:
|
283
|
+
rubygems_version: 2.5.1
|
284
|
+
signing_key:
|
285
|
+
specification_version: 4
|
286
|
+
summary: A powerful templating engine for CLI based test_project.
|
287
|
+
test_files: []
|