power_stencil 0.8.11 → 0.8.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: df94a3acebefba79cac4230615727310af33352c
4
- data.tar.gz: d9c23c0e8b153af072e533d6e170b412e9bcccdd
3
+ metadata.gz: 7dc79ec2bfd2b5329682f131365f15c693374d8d
4
+ data.tar.gz: 76f1e96f4d147cf6f1cd02895943033e8d1d3686
5
5
  SHA512:
6
- metadata.gz: ef6af6b335756c7120575eba283887e704371a90032ae24c60f12915ddf43cebdb2205eb58c445b36a374d6255c114150bb816576ef3ded5304ef4227198e43c
7
- data.tar.gz: 60b5625ba00c9fa20176f584d32b8c405b9dbf41a93b29d1d24b4bf453cd75d133c74b41e3620d1fef80beb6a44009ba8755c3a2dbdcd1834167b3dc42538131
6
+ metadata.gz: e672747d710d0b5a350a1870d651594ddc5eb5e4f8d3a0eead55a121a4f7d0ba4380a32f272bd5315bf2c8751452cc554e8fc63c1d58d5f27078ab57587ddea0
7
+ data.tar.gz: 8780ba7d6d7dd186f4de790e37154c46eee6ed3f085639420a22e771c44d91e8586aeb175993577c5e76bb87aaae367a6439130107462e6f7a513ad0682efaf6
@@ -0,0 +1,118 @@
1
+ <% gem_name = "psplugin_#{ plugin_name}" -%>
2
+ <%= plugin_title_name %>
3
+ <%= '=' * plugin_title_name.size %>
4
+
5
+ [![Gem Version](https://badge.fury.io/rb/<%= gem_name %>.svg)](https://rubygems.org/gems/<%= gem_name %>) [![Pipeline status](https://gitlab.com/tools4devops/psplugins/<%= gem_name %>/badges/master/pipeline.svg)](https://gitlab.com/tools4devops/psplugins/<%= gem_name %>/commits/master)
6
+
7
+ [PowerStencil] is the Swiss-army knife templating workflow for developers and ops.
8
+
9
+ `<%= plugin_title_name %>` is a [PowerStencil] plugin.
10
+
11
+ See [official website][PowerStencil site].
12
+
13
+
14
+ <!-- TOC -->
15
+
16
+ - [What is a PowerStencil plugin ?](#what-is-a-powerstencil-plugin-)
17
+ - [Using this plugin in your `PowerStencil` projects](#using-this-plugin-in-your-powerstencil-projects)
18
+ - [Goal of this plugin](#goal-of-this-plugin)
19
+ - [Plugin capabilities](#plugin-capabilities)
20
+ - [Config](#config)
21
+ - [Subcommands and options](#subcommands-and-options)
22
+ - [Post-build actions](#post-build-actions)
23
+ - [DSL in templates and in `power_stencil shell`](#dsl-in-templates-and-in-power_stencil-shell)
24
+ - [Entity types](#entity-types)
25
+ - [Templates-templates](#templates-templates)
26
+ - [Contributing](#contributing)
27
+ - [License](#license)
28
+ - [Code of Conduct](#code-of-conduct)
29
+
30
+ <!-- /TOC -->
31
+
32
+ # What is a PowerStencil plugin ?
33
+
34
+ A `PowerStencil` plugin can be used in the context of a `PowerStencil` project and bring extra features to a standard project.
35
+
36
+ If you don't know what `PowerStencil` is made for, you may read [the documentation][PowerStencil] first.
37
+
38
+ Features provided by a plugin can be:
39
+
40
+ * Extra config.
41
+ * Extra subcommands or options added to the `power_stencil` command-line.
42
+ * Extra post-build actions.
43
+ * Extra DSL methods available in templates and in `power_stencil shell`.
44
+ * Extra entity types.
45
+ * Extra templates-templates.
46
+
47
+ # Using this plugin in your `PowerStencil` projects
48
+
49
+ To use this plugin within your `PowerStencil` project, you need to:
50
+
51
+ * be within a `PowerStencil` project :wink:.
52
+ * declare this plugin in the project configuration (from the root of your project in the `.ps_project/versioned-config.yaml` file).
53
+
54
+ In this yaml configuration file, you just have to add a new entry in the `:project_plugins` array or simply create it if it is not yet existing:
55
+
56
+ ```yaml
57
+ :project_plugins:
58
+ - <%= gem_name %>
59
+ ```
60
+ If this plugin is not already present on your machine, you may have to download it:
61
+
62
+ $ power_stencil plugin --install
63
+
64
+ And then you may see information about the plugin by running:
65
+
66
+ * `power_stencil info` in the plugins section.
67
+ * `power_stencil plugin --list -v`
68
+
69
+ # Goal of this plugin
70
+
71
+ # Plugin capabilities
72
+
73
+ This plugin provides the following features:
74
+
75
+ ## Config
76
+
77
+ ## Subcommands and options
78
+
79
+ ## Post-build actions
80
+
81
+ ## DSL in templates and in `power_stencil shell`
82
+
83
+ ## Entity types
84
+
85
+ ## Templates-templates
86
+
87
+
88
+ # Contributing
89
+
90
+ Bug reports and pull requests are welcome on Gitlab at https://gitlab.com/tools4devops/psplugins/<%= plugin_name %>/issues. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
91
+
92
+ ## License
93
+
94
+ The gem is available as open source under the terms of the [MIT License].
95
+
96
+ ## Code of Conduct
97
+
98
+ Everyone interacting in the PowerStencil project’s codebase, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct].
99
+
100
+ <!-- End of Document -->
101
+
102
+ <!-- Pages -->
103
+ [code of conduct]: CODE_OF_CONDUCT.md
104
+
105
+ <!-- Code links -->
106
+
107
+ <!-- Illustrations -->
108
+ [simple-flow-image]: doc/images/power-stencil-simple-flow.svg
109
+
110
+ <!-- External links -->
111
+ [MIT License]: http://opensource.org/licenses/MIT "The MIT license"
112
+ [ERB]: https://ruby-doc.org/stdlib-2.6.3/libdoc/erb/rdoc/ERB.html "Quick ERB description"
113
+ [Haml]: http://haml.info/ "The templating engine for XML-like documents"
114
+ [Ruby]: https://www.ruby-lang.org "The powerful Ruby language"
115
+ [Rails]: https://rubyonrails.org/ "The Ruby on Rails framework"
116
+ [PowerStencil site]: https://powerstencil.brizone.org "Official PowerStencil website"
117
+ [PowerStencil]: https://gitlab.com/tools4devops/power_stencil/blob/master/README.md "PowerStencil documentation"
118
+ [PowerStencil plugins]: https://gitlab.com/tools4devops/power_stencil/blob/master/doc/plugins.md "PowerStencil plugins documentation"
@@ -12,13 +12,27 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{<%= plugin_name %> is a plugin for the PowerStencil framework.}
13
13
  spec.description = %q{TODO: Write a longer description or delete this line.}
14
14
  spec.homepage = "TODO: Put your gem's website or public repo URL here."
15
- spec.license = "MIT"
15
+ spec.license = 'MIT'
16
16
 
17
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
- # to allow pushing to a single host or delete this section to allow pushing to any host.
17
+ # Change this and following metadata if you don't want your plugin to be an "official" PowerStencil plugin.
18
+ # ie deployed to https://gitlab.com/tools4devops/psplugins
19
+ source_code_uri = 'https://gitlab.com/tools4devops/psplugins/<%= plugin_name %>'
20
+
21
+ # Gem metadata
19
22
  if spec.respond_to?(:metadata)
23
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
24
+ # to allow pushing to a single host or delete this line to allow pushing to any host.
20
25
  spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
- # This metadata is mandatory for PowerStencil !!
26
+
27
+ # Nice link to your home page on rubygems.org
28
+ spec.metadata['homepage_uri'] = spec.homepage
29
+
30
+ # You have to probably change this if you don't deploy to gitlab
31
+ spec.metadata['bug_tracker_uri'] = "#{source_code_uri}/issues"
32
+ spec.metadata['documentation_uri'] = "#{source_code_uri}/blob/master/README.md"
33
+ spec.metadata['source_code_uri'] = source_code_uri
34
+
35
+ # This metadata is mandatory for a PowerStencil plugin !!
22
36
  spec.metadata['plugin_name'] = '<%= plugin_name %>'
23
37
  else
24
38
  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes and PowerStencil plugin mechanism !'
@@ -31,8 +45,9 @@ Gem::Specification.new do |spec|
31
45
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
46
  spec.require_paths = ['lib']
33
47
 
34
- spec.add_development_dependency 'bundler', '~> 2.0.2'
48
+ spec.add_development_dependency 'bundler'
35
49
  spec.add_development_dependency 'rake', '~> 10.0'
36
50
  spec.add_development_dependency 'rspec', '~> 3.0'
37
51
  spec.add_development_dependency 'power_stencil', "~> <%= PowerStencil::VERSION %>"
52
+
38
53
  end
@@ -0,0 +1,15 @@
1
+ require "bundler/setup"
2
+ require 'power_stencil'
3
+ require "<%= plugin_name %>"
4
+
5
+ RSpec.configure do |config|
6
+ # Enable flags like --only-failures and --next-failure
7
+ config.example_status_persistence_file_path = ".rspec_status"
8
+
9
+ # Disable RSpec exposing methods globally on `Module` and `main`
10
+ config.disable_monkey_patching!
11
+
12
+ config.expect_with :rspec do |c|
13
+ c.syntax = :expect
14
+ end
15
+ end
@@ -0,0 +1,10 @@
1
+ RSpec.describe <%= plugin_module_name %> do
2
+ it 'has a version number' do
3
+ expect(<%= plugin_module_name %>::VERSION).not_to be nil
4
+ end
5
+
6
+ it 'does something useful' do
7
+ pending 'Tests implementation'
8
+ RSpec.fail
9
+ end
10
+ end
@@ -1,43 +1,118 @@
1
- # <%= plugin_module_name %>
1
+ <% gem_name = "psplugin_#{ plugin_name}" -%>
2
+ <%= plugin_title_name %>
3
+ <%= '=' * plugin_title_name.size %>
2
4
 
3
- Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/<%= plugin_module_name %>`. To experiment with that code, run `bin/console` for an interactive prompt.
5
+ [![Gem Version](https://badge.fury.io/rb/<%= gem_name %>.svg)](https://rubygems.org/gems/<%= gem_name %>) [![Pipeline status](https://gitlab.com/tools4devops/psplugins/<%= gem_name %>/badges/master/pipeline.svg)](https://gitlab.com/tools4devops/psplugins/<%= gem_name %>/commits/master)
4
6
 
5
- TODO: Delete this and the text above, and describe your gem
7
+ [PowerStencil] is the Swiss-army knife templating workflow for developers and ops.
6
8
 
7
- ## Installation
9
+ `<%= plugin_title_name %>` is a [PowerStencil] plugin.
8
10
 
9
- Add this line to your application's Gemfile:
11
+ See [official website][PowerStencil site].
10
12
 
11
- ```ruby
12
- gem '<%= plugin_module_name %>'
13
+
14
+ <!-- TOC -->
15
+
16
+ - [What is a PowerStencil plugin ?](#what-is-a-powerstencil-plugin-)
17
+ - [Using this plugin in your `PowerStencil` projects](#using-this-plugin-in-your-powerstencil-projects)
18
+ - [Goal of this plugin](#goal-of-this-plugin)
19
+ - [Plugin capabilities](#plugin-capabilities)
20
+ - [Config](#config)
21
+ - [Subcommands and options](#subcommands-and-options)
22
+ - [Post-build actions](#post-build-actions)
23
+ - [DSL in templates and in `power_stencil shell`](#dsl-in-templates-and-in-power_stencil-shell)
24
+ - [Entity types](#entity-types)
25
+ - [Templates-templates](#templates-templates)
26
+ - [Contributing](#contributing)
27
+ - [License](#license)
28
+ - [Code of Conduct](#code-of-conduct)
29
+
30
+ <!-- /TOC -->
31
+
32
+ # What is a PowerStencil plugin ?
33
+
34
+ A `PowerStencil` plugin can be used in the context of a `PowerStencil` project and bring extra features to a standard project.
35
+
36
+ If you don't know what `PowerStencil` is made for, you may read [the documentation][PowerStencil] first.
37
+
38
+ Features provided by a plugin can be:
39
+
40
+ * Extra config.
41
+ * Extra subcommands or options added to the `power_stencil` command-line.
42
+ * Extra post-build actions.
43
+ * Extra DSL methods available in templates and in `power_stencil shell`.
44
+ * Extra entity types.
45
+ * Extra templates-templates.
46
+
47
+ # Using this plugin in your `PowerStencil` projects
48
+
49
+ To use this plugin within your `PowerStencil` project, you need to:
50
+
51
+ * be within a `PowerStencil` project :wink:.
52
+ * declare this plugin in the project configuration (from the root of your project in the `.ps_project/versioned-config.yaml` file).
53
+
54
+ In this yaml configuration file, you just have to add a new entry in the `:project_plugins` array or simply create it if it is not yet existing:
55
+
56
+ ```yaml
57
+ :project_plugins:
58
+ - <%= gem_name %>
13
59
  ```
60
+ If this plugin is not already present on your machine, you may have to download it:
61
+
62
+ $ power_stencil plugin --install
63
+
64
+ And then you may see information about the plugin by running:
65
+
66
+ * `power_stencil info` in the plugins section.
67
+ * `power_stencil plugin --list -v`
68
+
69
+ # Goal of this plugin
14
70
 
15
- And then execute:
71
+ # Plugin capabilities
16
72
 
17
- $ bundle
73
+ This plugin provides the following features:
18
74
 
19
- Or install it yourself as:
75
+ ## Config
20
76
 
21
- $ gem install <%= plugin_module_name %>
77
+ ## Subcommands and options
22
78
 
23
- ## Usage
79
+ ## Post-build actions
24
80
 
25
- TODO: Write usage instructions here
81
+ ## DSL in templates and in `power_stencil shell`
26
82
 
27
- ## Development
83
+ ## Entity types
28
84
 
29
- After checking out the repo, run `bin/setup` to install dependencies. Then, run `rake spec` to run the tests. You can also run `bin/console` for an interactive prompt that will allow you to experiment.
85
+ ## Templates-templates
30
86
 
31
- To install this gem onto your local machine, run `bundle exec rake install`. To release a new version, update the version number in `version.rb`, and then run `bundle exec rake release`, which will create a git tag for the version, push git commits and tags, and push the `.gem` file to [rubygems.org](https://rubygems.org).
32
87
 
33
- ## Contributing
88
+ # Contributing
34
89
 
35
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/<%= plugin_module_name %>. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
90
+ Bug reports and pull requests are welcome on Gitlab at https://gitlab.com/tools4devops/psplugins/<%= plugin_name %>/issues. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
36
91
 
37
92
  ## License
38
93
 
39
- The gem is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
94
+ The gem is available as open source under the terms of the [MIT License].
40
95
 
41
96
  ## Code of Conduct
42
97
 
43
- Everyone interacting in the <%= plugin_module_name %> project’s codebases, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct](https://github.com/[USERNAME]/<%= plugin_module_name %>/blob/master/CODE_OF_CONDUCT.md).
98
+ Everyone interacting in the PowerStencil project’s codebase, issue trackers, chat rooms and mailing lists is expected to follow the [code of conduct].
99
+
100
+ <!-- End of Document -->
101
+
102
+ <!-- Pages -->
103
+ [code of conduct]: CODE_OF_CONDUCT.md
104
+
105
+ <!-- Code links -->
106
+
107
+ <!-- Illustrations -->
108
+ [simple-flow-image]: doc/images/power-stencil-simple-flow.svg
109
+
110
+ <!-- External links -->
111
+ [MIT License]: http://opensource.org/licenses/MIT "The MIT license"
112
+ [ERB]: https://ruby-doc.org/stdlib-2.6.3/libdoc/erb/rdoc/ERB.html "Quick ERB description"
113
+ [Haml]: http://haml.info/ "The templating engine for XML-like documents"
114
+ [Ruby]: https://www.ruby-lang.org "The powerful Ruby language"
115
+ [Rails]: https://rubyonrails.org/ "The Ruby on Rails framework"
116
+ [PowerStencil site]: https://powerstencil.brizone.org "Official PowerStencil website"
117
+ [PowerStencil]: https://gitlab.com/tools4devops/power_stencil/blob/master/README.md "PowerStencil documentation"
118
+ [PowerStencil plugins]: https://gitlab.com/tools4devops/power_stencil/blob/master/doc/plugins.md "PowerStencil plugins documentation"
@@ -12,13 +12,27 @@ Gem::Specification.new do |spec|
12
12
  spec.summary = %q{<%= plugin_name %> is a plugin for the PowerStencil framework.}
13
13
  spec.description = %q{TODO: Write a longer description or delete this line.}
14
14
  spec.homepage = "TODO: Put your gem's website or public repo URL here."
15
- spec.license = "MIT"
15
+ spec.license = 'MIT'
16
16
 
17
- # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
18
- # to allow pushing to a single host or delete this section to allow pushing to any host.
17
+ # Change this and following metadata if you don't want your plugin to be an "official" PowerStencil plugin.
18
+ # ie deployed to https://gitlab.com/tools4devops/psplugins
19
+ source_code_uri = 'https://gitlab.com/tools4devops/psplugins/<%= plugin_name %>'
20
+
21
+ # Gem metadata
19
22
  if spec.respond_to?(:metadata)
23
+ # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
24
+ # to allow pushing to a single host or delete this line to allow pushing to any host.
20
25
  spec.metadata['allowed_push_host'] = "TODO: Set to 'http://mygemserver.com'"
21
- # This metadata is mandatory for PowerStencil !!
26
+
27
+ # Nice link to your home page on rubygems.org
28
+ spec.metadata['homepage_uri'] = spec.homepage
29
+
30
+ # You have to probably change this if you don't deploy to gitlab
31
+ spec.metadata['bug_tracker_uri'] = "#{source_code_uri}/issues"
32
+ spec.metadata['documentation_uri'] = "#{source_code_uri}/blob/master/README.md"
33
+ spec.metadata['source_code_uri'] = source_code_uri
34
+
35
+ # This metadata is mandatory for a PowerStencil plugin !!
22
36
  spec.metadata['plugin_name'] = '<%= plugin_name %>'
23
37
  else
24
38
  raise 'RubyGems 2.0 or newer is required to protect against public gem pushes and PowerStencil plugin mechanism !'
@@ -31,8 +45,9 @@ Gem::Specification.new do |spec|
31
45
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
32
46
  spec.require_paths = ['lib']
33
47
 
34
- spec.add_development_dependency 'bundler', '~> 2.0.2'
48
+ spec.add_development_dependency 'bundler'
35
49
  spec.add_development_dependency 'rake', '~> 10.0'
36
50
  spec.add_development_dependency 'rspec', '~> 3.0'
37
51
  spec.add_development_dependency 'power_stencil', "~> <%= PowerStencil::VERSION %>"
52
+
38
53
  end
@@ -1,5 +1,6 @@
1
1
  require "bundler/setup"
2
- require "<%= plugin_module_name %>"
2
+ require 'power_stencil'
3
+ require "<%= plugin_name %>"
3
4
 
4
5
  RSpec.configure do |config|
5
6
  # Enable flags like --only-failures and --next-failure
@@ -1,9 +1,10 @@
1
1
  RSpec.describe <%= plugin_module_name %> do
2
- it "has a version number" do
2
+ it 'has a version number' do
3
3
  expect(<%= plugin_module_name %>::VERSION).not_to be nil
4
4
  end
5
5
 
6
- it "does something useful" do
7
- expect(false).to eq(true)
6
+ it 'does something useful' do
7
+ pending 'Tests implementation'
8
+ RSpec.fail
8
9
  end
9
10
  end
@@ -7,6 +7,10 @@ module PowerStencil
7
7
  main_entry_point.underscore
8
8
  end
9
9
 
10
+ def plugin_title_name
11
+ plugin_name.tr('_', ' ').split.map(&:capitalize).join(' ')
12
+ end
13
+
10
14
  def plugin_module_name
11
15
  plugin_name.camelize
12
16
  end
@@ -34,11 +34,11 @@ module PowerStencil
34
34
  @available_entities_hash.keys
35
35
  end
36
36
 
37
- def entity(type, name, universe)
37
+ def entity(type, name, universe = self.root_universe)
38
38
  universe.get_entity type, name
39
39
  end
40
40
 
41
- def entities(universe, criterion: nil, value: nil, &filter_block)
41
+ def entities(universe = self.root_universe, criterion: nil, value: nil, &filter_block)
42
42
  universe.get_entities criterion: criterion, value: value, &filter_block
43
43
  end
44
44
 
@@ -6,17 +6,15 @@ module PowerStencil
6
6
  def query_for_completion(query_type)
7
7
  case query_type
8
8
  when :entities
9
- engine.entities(engine.root_universe).map(&:as_path).sort
9
+ engine.entities.map(&:as_path).sort
10
10
  when :'entity-types'
11
11
  engine.available_entity_types.sort
12
12
  when :scenario
13
- engine.entities(engine.root_universe, criterion: :by_type, value: :entity_override) do |entity|
13
+ engine.entities(criterion: :by_type, value: :entity_override) do |entity|
14
14
  !entity.scenario.nil? and !entity.scenario.empty?
15
15
  end.map(&:scenario).sort.uniq
16
16
  when :buildable
17
- engine.entities(engine.root_universe) do |entity|
18
- entity.buildable?
19
- end.map(&:as_path).sort
17
+ engine.entities(&:buildable?).map(&:as_path).sort
20
18
  else
21
19
  raise PowerStencil::Error, "'#{query_type}' is not a valid query type for completion !"
22
20
  end
@@ -1,3 +1,3 @@
1
1
  module PowerStencil
2
- VERSION = '0.8.11'.freeze
2
+ VERSION = '0.8.12'.freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: power_stencil
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.8.11
4
+ version: 0.8.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - Laurent Briais
@@ -154,6 +154,7 @@ files:
154
154
  - doc/plugins.md
155
155
  - doc/templates.md
156
156
  - etc/base_commands_definition.yml
157
+ - etc/meta_templates/plugin_seed/README.md
157
158
  - etc/meta_templates/plugin_seed/etc/command_line.yaml
158
159
  - etc/meta_templates/plugin_seed/etc/plugin_capabilities.yaml
159
160
  - etc/meta_templates/plugin_seed/etc/plugin_config.yaml
@@ -168,6 +169,8 @@ files:
168
169
  - etc/meta_templates/plugin_seed/lib/{entity}/version.rb.erb
169
170
  - etc/meta_templates/plugin_seed/lib/{entity}/{entity}_processor.rb.erb
170
171
  - etc/meta_templates/plugin_seed/psplugin_{entity}.gemspec
172
+ - etc/meta_templates/plugin_seed/spec/spec_helper.rb
173
+ - etc/meta_templates/plugin_seed/spec/{entity}_spec.rb
171
174
  - etc/power_stencil.yaml
172
175
  - etc/templates/plugin_definition/.gitignore
173
176
  - etc/templates/plugin_definition/.rspec
@@ -299,7 +302,7 @@ metadata:
299
302
  documentation_uri: https://gitlab.com/tools4devops/power_stencil/blob/master/README.md
300
303
  source_code_uri: https://gitlab.com/tools4devops/power_stencil
301
304
  homepage_uri: https://powerstencil.brizone.org/
302
- post_install_message: "\nThank you for installing PowerStencil 0.8.11 !\nFrom the
305
+ post_install_message: "\nThank you for installing PowerStencil 0.8.12 !\nFrom the
303
306
  command line you can run `power_stencil --help`\nIf your shell is not completing
304
307
  the command:\n If you use rbenv: `rbenv rehash`\n If you use zsh : `rehash`\n\nOfficial
305
308
  Website : https://powerstencil.brizone.org/\nFull documentation here :