From 1c4b15088495282fa8e79748b4990c47f14f8a58 Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Fri, 9 Aug 2024 10:12:35 +0200 Subject: [PATCH 1/4] fix: adapt to voxpupuli Signed-off-by: Robert Waffen --- README.md | 86 +++++++++++-------- onceover.gemspec | 2 +- .../caching/spec/factsets/README.md | 2 +- .../caching/spec/pre_conditions/README.md | 2 +- .../factsets/spec/factsets/README.md | 2 +- .../controlrepos/puppet_controlrepo/Gemfile | 2 +- templates/factsets_README.md.erb | 2 +- templates/pre_conditions_README.md.erb | 2 +- 8 files changed, 58 insertions(+), 42 deletions(-) diff --git a/README.md b/README.md index 2e3021e4..9e9484ba 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,12 @@ # Onceover +[![License](https://img.shields.io/github/license/voxpupuli/onceover.svg)](https://github.com/voxpupuli/onceover/blob/master/LICENSE) +[![Donated by dylanratcliffe](https://img.shields.io/badge/donated%20by-dylanratcliffe-fb7047.svg)](#transfer-notice) +[![RubyGem Version](https://img.shields.io/gem/v/onceover.svg)](https://rubygems.org/gems/onceover) +[![RubyGem Downloads](https://img.shields.io/gem/dt/onceover.svg)](https://rubygems.org/gems/onceover) +[![Build Status](https://travis-ci.com/voxpupuli/onceover.svg?branch=master)](https://travis-ci.com/voxpupuli/onceover) +[![Build status](https://ci.appveyor.com/api/projects/status/2ys2ggkgln69hmyf/branch/master?svg=true)](https://ci.appveyor.com/project/voxpupuli/onceover/branch/master) + *The gateway drug to automated infrastructure testing with Puppet* Onceover is a tool to automatically run basic tests on an entire Puppet control repository. @@ -8,8 +15,6 @@ It includes automatic parsing of the `Puppetfile`, `environment.conf` and others **New in v3.19.1: I've reversed the decision to have onceover use `site.pp` in the same way Puppet does. From now on your `manifest` setting in `environment.conf` will be ignored and your `site.pp` will only be used if you explicitly set the `manifest` option in the CLI or config file.** -[![Build Status](https://travis-ci.com/dylanratcliffe/onceover.svg?branch=master)](https://travis-ci.com/dylanratcliffe/onceover) [![Build status](https://ci.appveyor.com/api/projects/status/2ys2ggkgln69hmyf/branch/master?svg=true)](https://ci.appveyor.com/project/dylanratcliffe/onceover/branch/master) - ## Table of Contents - [Overview](#overview) @@ -65,6 +70,7 @@ This toolset requires some [configuration](#configuration) before it can be used ```shell bundle exec onceover init ``` + 1. Run your spec tests! ```shell @@ -179,6 +185,7 @@ Hopefully this config file will be fairly self explanatory once you see it, but **Note**: The facts are available through the `node_facts` hash and the trusted facts as `trusted_facts`. Exmaple: + ```yaml after: - "puts 'Test finished running'" @@ -200,6 +207,7 @@ Hopefully this config file will be fairly self explanatory once you see it, but This setting overrides defaults for the `Onceover::Controlrepo` class' `opts` hash. Example: + ```yaml opts: :facts_dirs: # Remember: `opts` keys are symbols! @@ -385,9 +393,10 @@ In this case, you're all set and onceover will auto-magically pick those up for **Note**: The top level `trusted` hash takes precidence over the `trusted[extensions]` hash nested under `values`. Meaning that if you have any specified at the top level, any nested ones will not be considered. So pick **ONE** method and stick with that. #### Trusted Certname -**Note:** When testing with Puppet >= 4.3 the trusted facts hash will have the standard trusted fact keys (certname, domain, and hostname) populated based on the node name (as set with :node). -To support the resolution of the trusted fact `certname` in auto-generated spec tests, onceover will set `:node` to the value of `trusted[certname]` where present in the source factset. +**Note:** When testing with Puppet >= 4.3 the trusted facts hash will have the standard trusted fact keys (certname, domain, and hostname) populated based on the node name (as set with :node). + +To support the resolution of the trusted fact `certname` in auto-generated spec tests, onceover will set `:node` to the value of `trusted[certname]` where present in the source factset. For example: A spec test generated by the factset below would result in `:node` == `node.puppetlabs.net`. @@ -425,8 +434,9 @@ If `trusted[certname]` is absent, the value of `:node` will default to the FQDN ``` See the following rspec-puppet links for more information: - - [Specifying the FQDN of the test node](https://github.com/puppetlabs/rspec-puppet#specifying-the-fqdn-of-the-test-node) - - [Specifying trusted facts](https://github.com/puppetlabs/rspec-puppet#specifying-trusted-facts) + +- [Specifying the FQDN of the test node](https://github.com/puppetlabs/rspec-puppet#specifying-the-fqdn-of-the-test-node) +- [Specifying trusted facts](https://github.com/puppetlabs/rspec-puppet#specifying-trusted-facts) #### Trusted External Data @@ -488,7 +498,7 @@ In these instances it may be worth creating a hierarchy level that simply includ Organisations often reference modules from their own git servers in the `Puppetfile`, like this: -``` +```ruby mod "puppetlabs-apache", :git => "https://git.megacorp.com/pup/puppetlabs-apache.git", :tag => "v5.4.0" @@ -498,7 +508,7 @@ Under the hood, `onceover` uses `r10k` to download the modules in your `Puppetfi If you get errors downloading modules from `git`, its because `r10k`'s call to your underlying `git` command has failed. `onceover` tells you the command that `r10k` tried to run, so if you get an error like this: -``` +```text INFO -> Updating module /Users/dylan/control-repo/.onceover/etc/puppetlabs/code/environments /production/modules/apache ERROR -> Command exited with non-zero exit code: @@ -516,14 +526,17 @@ Exit code: 128 Then the approach to debug it would be to run the command that Onceover suggested: -``` +```shell git --git-dir /Users/dylan/.r10k/git/ssh---git.megacorp.com-pup-puppetlabs_apache.git fetch origin --prune ``` In this case, running the command interactively gives us a prompt to add the server to our `~/.ssh/known_hosts` file, which fixes the problem permanently: -``` +```shell $ git --git-dir /Users/dylan/.r10k/git/ssh---git.megacorp.com-pup-puppetlabs_apache.git fetch origin --prune +``` + +```text The authenticity of host 'git.megacorp.com (123.456.789.101)' can't be established. ... Warning: Permanently added 'git.megacorp.com,123.456.789.101' (RSA) to the list of known hosts. @@ -609,9 +622,9 @@ If you want to see Puppet's output, you can set the `SHOW_PUPPET_OUTPUT` environ There may be situations where you cannot test everything that is in your puppet code, some common reasons for this include: - - Code is destined for a Puppet Master but the VM image is not a Puppet Master which means we can't restart certain services etc. - - A file is being pulled from somewhere that is only accessible in production - - Something is trying to connect to something else that does not exist +- Code is destined for a Puppet Master but the VM image is not a Puppet Master which means we can't restart certain services etc. +- A file is being pulled from somewhere that is only accessible in production +- Something is trying to connect to something else that does not exist Fear not! There is a solution for this, it's also a good way to practice writing *nasty* puppet code. For this exact purpose I have added the ability for onceover to include extra bits of code in the tests to fix things like this. All you need to do is put a file/s containing puppet code here: @@ -673,8 +686,8 @@ Onceover now allows for plugins. To use a plugin simply install a gem with a nam Useful plugins: - - [onceover-codequality](https://github.com/declarativesystems/onceover-codequality) _Check lint and syntax_ - - [onceover-octocatalog-diff](https://github.com/dylanratcliffe/onceover-octocatalog-diff) _See the differences between two versions of a catalog_ +- [onceover-codequality](https://github.com/declarativesystems/onceover-codequality) _Check lint and syntax_ +- [onceover-octocatalog-diff](https://github.com/voxpupuli/onceover-octocatalog-diff) _See the differences between two versions of a catalog_ If you want to write your own plugin, take a look at [onceover-helloworld](https://github.com/declarativesystems/onceover-helloworld) to help you get started. @@ -897,23 +910,26 @@ Execute tests Cheers to all of those who helped out: - - @jessereynolds - - @op-ct - - @GeoffWilliams - - @beergeek - - @jairojunior - - @natemccurdy - - @aardvark - - @Mandos - - @Nekototori - - @LMacchi - - @tabakhase - - @binford2k - - @raphink - - @tequeter - - @alexjfisher - - @smortex - - @16c7x - - @neomilium - - @chlawren - +- @jessereynolds +- @op-ct +- @GeoffWilliams +- @beergeek +- @jairojunior +- @natemccurdy +- @aardvark +- @Mandos +- @Nekototori +- @LMacchi +- @tabakhase +- @binford2k +- @raphink +- @tequeter +- @alexjfisher +- @smortex +- @16c7x +- @neomilium +- @chlawren + +## Transfer Notice + +This project was originally authored by dylanratcliffe. The maintainer preferred that Vox Pupuli take ownership of the project for future improvement and maintenance. Existing pull requests and issues were transferred over, please fork and continue to contribute here instead of voxpupuli-onceover. diff --git a/onceover.gemspec b/onceover.gemspec index 78b0d80d..adcef4c1 100644 --- a/onceover.gemspec +++ b/onceover.gemspec @@ -7,7 +7,7 @@ Gem::Specification.new do |s| # rubocop:disable Gemspec/RequireMFA s.version = "3.22.0" s.authors = ["Dylan Ratcliffe"] s.email = ["dylan.ratcliffe@puppet.com"] - s.homepage = "https://github.com/dylanratcliffe/onceover" + s.homepage = "https://github.com/voxpupuli/onceover" s.summary = "Testing tools for Puppet controlrepos" s.description = "Automatically generates tests for your Puppet code" s.licenses = 'Apache-2.0' diff --git a/spec/fixtures/controlrepos/caching/spec/factsets/README.md b/spec/fixtures/controlrepos/caching/spec/factsets/README.md index dd72566c..5b3d799e 100644 --- a/spec/fixtures/controlrepos/caching/spec/factsets/README.md +++ b/spec/fixtures/controlrepos/caching/spec/factsets/README.md @@ -4,4 +4,4 @@ This directory is where we put any custom factsets that we want to use. They can **Hot tip:** If you already have factsets in here when you run `onceover init` they will be picked up and added to the config file Automatically -More info: https://github.com/dylanratcliffe/onceover#factsets +More info: https://github.com/voxpupuli/onceover#factsets diff --git a/spec/fixtures/controlrepos/caching/spec/pre_conditions/README.md b/spec/fixtures/controlrepos/caching/spec/pre_conditions/README.md index f0a81bf9..7c3d2462 100644 --- a/spec/fixtures/controlrepos/caching/spec/pre_conditions/README.md +++ b/spec/fixtures/controlrepos/caching/spec/pre_conditions/README.md @@ -21,4 +21,4 @@ service { 'pe-puppetserver': This will mean that the `pe-puppetserver` service is in the catalog for spec testing and will even allow you to try to restart it during acceptance tests without the service actually being present. -More info: https://github.com/dylanratcliffe/onceover#using-workarounds +More info: https://github.com/voxpupuli/onceover#using-workarounds diff --git a/spec/fixtures/controlrepos/factsets/spec/factsets/README.md b/spec/fixtures/controlrepos/factsets/spec/factsets/README.md index dd72566c..5b3d799e 100644 --- a/spec/fixtures/controlrepos/factsets/spec/factsets/README.md +++ b/spec/fixtures/controlrepos/factsets/spec/factsets/README.md @@ -4,4 +4,4 @@ This directory is where we put any custom factsets that we want to use. They can **Hot tip:** If you already have factsets in here when you run `onceover init` they will be picked up and added to the config file Automatically -More info: https://github.com/dylanratcliffe/onceover#factsets +More info: https://github.com/voxpupuli/onceover#factsets diff --git a/spec/fixtures/controlrepos/puppet_controlrepo/Gemfile b/spec/fixtures/controlrepos/puppet_controlrepo/Gemfile index 598d3bb0..3616329b 100644 --- a/spec/fixtures/controlrepos/puppet_controlrepo/Gemfile +++ b/spec/fixtures/controlrepos/puppet_controlrepo/Gemfile @@ -11,7 +11,7 @@ if ENV['ONCEOVER_gem'] == 'local' gem 'onceover', :path => '/Users/dylan/git/onceover' # gem 'onceover-octocatalog-diff', :path => '/Users/dylan/git/onceover-octocatalog-diff' else - gem 'onceover', :git => 'https://github.com/dylanratcliffe/onceover.git'#, :branch => 'issue-51' + gem 'onceover', :git => 'https://github.com/voxpupuli/onceover.git'#, :branch => 'issue-51' # gem 'onceover-octocatalog-diff', :git => 'https://github.com/dylanratcliffe/onceover-octocatalog-diff.git' end diff --git a/templates/factsets_README.md.erb b/templates/factsets_README.md.erb index dd72566c..5b3d799e 100644 --- a/templates/factsets_README.md.erb +++ b/templates/factsets_README.md.erb @@ -4,4 +4,4 @@ This directory is where we put any custom factsets that we want to use. They can **Hot tip:** If you already have factsets in here when you run `onceover init` they will be picked up and added to the config file Automatically -More info: https://github.com/dylanratcliffe/onceover#factsets +More info: https://github.com/voxpupuli/onceover#factsets diff --git a/templates/pre_conditions_README.md.erb b/templates/pre_conditions_README.md.erb index f0a81bf9..7c3d2462 100644 --- a/templates/pre_conditions_README.md.erb +++ b/templates/pre_conditions_README.md.erb @@ -21,4 +21,4 @@ service { 'pe-puppetserver': This will mean that the `pe-puppetserver` service is in the catalog for spec testing and will even allow you to try to restart it during acceptance tests without the service actually being present. -More info: https://github.com/dylanratcliffe/onceover#using-workarounds +More info: https://github.com/voxpupuli/onceover#using-workarounds From 5a2157208635746f42e573ec1382466db48e93f6 Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Fri, 9 Aug 2024 10:14:32 +0200 Subject: [PATCH 2/4] fix: add license. rubygems says its apache-2.0, so adding it here Signed-off-by: Robert Waffen --- LICENSE | 202 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 202 insertions(+) create mode 100644 LICENSE diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..d6456956 --- /dev/null +++ b/LICENSE @@ -0,0 +1,202 @@ + + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + APPENDIX: How to apply the Apache License to your work. + + To apply the Apache License to your work, attach the following + boilerplate notice, with the fields enclosed by brackets "[]" + replaced with your own identifying information. (Don't include + the brackets!) The text should be enclosed in the appropriate + comment syntax for the file format. We also recommend that a + file or class name and description of purpose be included on the + same "printed page" as the copyright notice for easier + identification within third-party archives. + + Copyright [yyyy] [name of copyright owner] + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. From f7d11b4f63e7ab07bfd7608638999d10877b437d Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Fri, 9 Aug 2024 11:58:54 +0200 Subject: [PATCH 3/4] remove travis Signed-off-by: Robert Waffen --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 9e9484ba..68c20350 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,6 @@ [![Donated by dylanratcliffe](https://img.shields.io/badge/donated%20by-dylanratcliffe-fb7047.svg)](#transfer-notice) [![RubyGem Version](https://img.shields.io/gem/v/onceover.svg)](https://rubygems.org/gems/onceover) [![RubyGem Downloads](https://img.shields.io/gem/dt/onceover.svg)](https://rubygems.org/gems/onceover) -[![Build Status](https://travis-ci.com/voxpupuli/onceover.svg?branch=master)](https://travis-ci.com/voxpupuli/onceover) -[![Build status](https://ci.appveyor.com/api/projects/status/2ys2ggkgln69hmyf/branch/master?svg=true)](https://ci.appveyor.com/project/voxpupuli/onceover/branch/master) *The gateway drug to automated infrastructure testing with Puppet* From 73f87a210789e00410536a6060cea0944349925b Mon Sep 17 00:00:00 2001 From: Robert Waffen Date: Fri, 9 Aug 2024 11:59:50 +0200 Subject: [PATCH 4/4] set email Signed-off-by: Robert Waffen --- onceover.gemspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/onceover.gemspec b/onceover.gemspec index adcef4c1..0ee9c3af 100644 --- a/onceover.gemspec +++ b/onceover.gemspec @@ -6,7 +6,7 @@ Gem::Specification.new do |s| # rubocop:disable Gemspec/RequireMFA s.name = "onceover" s.version = "3.22.0" s.authors = ["Dylan Ratcliffe"] - s.email = ["dylan.ratcliffe@puppet.com"] + s.email = ["voxpupuli@groups.io"] s.homepage = "https://github.com/voxpupuli/onceover" s.summary = "Testing tools for Puppet controlrepos" s.description = "Automatically generates tests for your Puppet code"