Showing with 1,863 additions and 1,960 deletions.
  1. +5 −5 .gitattributes
  2. +2 −0 .gitignore
  3. +17 −0 .pdkignore
  4. +1 −0 .puppet-lint.rc
  5. +75 −637 .rubocop.yml
  6. +14 −4 .sync.yml
  7. +21 −20 .travis.yml
  8. +6 −0 .vscode/extensions.json
  9. +16 −5 CHANGELOG.md
  10. +2 −0 CODEOWNERS
  11. +19 −24 Gemfile
  12. +129 −0 HISTORY.md
  13. +2 −149 README.markdown
  14. +231 −0 REFERENCE.md
  15. +80 −0 Rakefile
  16. +20 −2 appveyor.yml
  17. +88 −88 examples/compliance_example.pp
  18. +78 −79 examples/purge_example.pp
  19. +58 −58 examples/registry_examples.pp
  20. +18 −18 examples/service_example.pp
  21. +20 −13 lib/puppet/provider/registry_key/registry.rb
  22. +59 −56 lib/puppet/provider/registry_value/registry.rb
  23. +43 −36 lib/puppet/type/registry_key.rb
  24. +87 −49 lib/puppet/type/registry_value.rb
  25. +198 −190 lib/puppet_x/puppetlabs/registry.rb
  26. +13 −21 manifests/service.pp
  27. +21 −24 manifests/value.pp
  28. +14 −13 metadata.json
  29. +26 −26 spec/acceptance/should_create_key_spec.rb
  30. +22 −21 spec/acceptance/should_have_defined_type_spec.rb
  31. +48 −46 spec/acceptance/should_manage_values_spec.rb
  32. +27 −29 spec/acceptance/should_tolerate_mixed_case_spec.rb
  33. +64 −44 spec/defines/value_spec.rb
  34. +1 −0 spec/fixtures/mixed_default_settings/manifests/init.pp
  35. +27 −13 spec/spec_helper.rb
  36. +6 −6 spec/spec_helper_acceptance.rb
  37. +1 −1 spec/spec_helper_local.rb
  38. +49 −48 spec/unit/puppet/provider/registry_key_spec.rb
  39. +118 −110 spec/unit/puppet/provider/registry_value_spec.rb
  40. +43 −45 spec/unit/puppet/type/registry_key_spec.rb
  41. +77 −62 spec/unit/puppet/type/registry_value_spec.rb
  42. +17 −18 spec/watchr.rb
10 changes: 5 additions & 5 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#This file is generated by ModuleSync, do not edit.
*.rb eol=lf
*.erb eol=lf
*.pp eol=lf
*.sh eol=lf
*.rb eol=lf
*.erb eol=lf
*.pp eol=lf
*.sh eol=lf
*.epp eol=lf
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,5 @@
/convert_report.txt
/update_report.txt
.DS_Store
.envrc
/inventory.yaml
17 changes: 17 additions & 0 deletions .pdkignore
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,20 @@
/convert_report.txt
/update_report.txt
.DS_Store
.envrc
/inventory.yaml
/appveyor.yml
/.fixtures.yml
/Gemfile
/.gitattributes
/.gitignore
/.gitlab-ci.yml
/.pdkignore
/Rakefile
/rakelib/
/.rspec
/.rubocop.yml
/.travis.yml
/.yardopts
/spec/
/.vscode/
1 change: 1 addition & 0 deletions .puppet-lint.rc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
--relative
Loading