knife-cookbook-doc 0.24.1 → 0.24.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 352a68b24110e8c990e327478345214b3b4e619d
4
- data.tar.gz: 92555f89d0f0d0812eb76a04fa2b509714ea357d
3
+ metadata.gz: cf3382df756fcf1c8789beffa5b2a14364a9f12e
4
+ data.tar.gz: 2fdff7fcaa6c1fa3d447d3dc769418989063f708
5
5
  SHA512:
6
- metadata.gz: 0554d09c9f95fc917c6019166ae033901b01e50a3586f4c3f66686bd95aba34bf8cfd98234c2d8c282fae829ef7912ab369a81acabd327355fe4c82d89e2c420
7
- data.tar.gz: 7941527cf37668835415a97e12ef35bd63b207b3db55ad8934ccddd0a202cc82ac7f839e5df9afaabbc94eb698237b6b232ab70e0522f236fc20cb99d8974ea3
6
+ metadata.gz: 68d087001a289bb1ea5d1e697a53e606a3da0f88826dba7e4ed7d0aa27b9daacc455d933740644c0b3f201b81b1677c3d5855882d4395b607c433f10da1e79fb
7
+ data.tar.gz: 999f4b72d106d83b211be21b2b082ef6c14ad4f63aea0e0c1b7ed64237846d302c9a3b0c4dd5efe2dd249e570f485ab02cc836950805e18514e63038a4b215f2
@@ -5,6 +5,7 @@
5
5
  *.md text
6
6
  *.rb text
7
7
  *.yml text
8
+ .gitattributes text
8
9
  .gitignore text
9
10
  Gemfile text
10
11
  LICENSE text
@@ -0,0 +1,45 @@
1
+ <!--
2
+ Thanks for your interest in the project. I appreciate bugs filed and PRs submitted!
3
+ Please make sure that you are familiar with and follow the Code of Conduct for
4
+ this project (found in the CODE_OF_CONDUCT.md file).
5
+
6
+ Please fill out this template with all the relevant information so we can
7
+ understand what's going on and fix the issue.
8
+
9
+ I may ask you to submit the fix (after giving some direction).
10
+ -->
11
+
12
+ Environment:
13
+
14
+ <!--
15
+ Please provide the version of this project where the issue occurred as well as the
16
+ versions of other environmental factors. This could be virtual machine version, os
17
+ version, browser version etc.
18
+ -->
19
+
20
+ Relevant code or config:
21
+
22
+ ```
23
+
24
+ ```
25
+
26
+ What you did:
27
+
28
+
29
+
30
+ What happened:
31
+
32
+ <!-- Please provide the full error message/screenshots/anything -->
33
+
34
+ Reproduction repository:
35
+
36
+ <!--
37
+ If possible, please create a repository that reproduces the issue with the
38
+ minimal amount of code possible.
39
+ -->
40
+
41
+ Problem description:
42
+
43
+
44
+
45
+ Suggested solution:
@@ -1,6 +1,5 @@
1
1
  language: ruby
2
2
  cache: bundler
3
- sudo: false
4
3
  gemfile: fixture/gemfile
5
4
 
6
5
  rvm:
@@ -1,3 +1,7 @@
1
+ # v0.24.2 (Dec 17 2018)
2
+
3
+ * Add chef_versions support. Submitted by Nikolay Antsiferov.
4
+
1
5
  # v0.24.1 (Oct 2 2017)
2
6
 
3
7
  * Fix the markdown spacing for maintainer/source/issues URL. Submitted by Jamie Tanna.
@@ -0,0 +1,73 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ In the interest of fostering an open and welcoming environment, we as
6
+ contributors and maintainers pledge to making participation in our project and
7
+ our community a harassment-free experience for everyone, regardless of age, body
8
+ size, disability, ethnicity, gender identity and expression, level of experience,
9
+ education, socio-economic status, nationality, personal appearance, race,
10
+ religion, or sexual identity and orientation.
11
+
12
+ ## Our Standards
13
+
14
+ Examples of behavior that contributes to creating a positive environment
15
+ include:
16
+
17
+ * Using welcoming and inclusive language
18
+ * Being respectful of differing viewpoints and experiences
19
+ * Gracefully accepting constructive criticism
20
+ * Focusing on what is best for the community
21
+ * Showing empathy towards other community members
22
+
23
+ Examples of unacceptable behavior by participants include:
24
+
25
+ * The use of sexualized language or imagery and unwelcome sexual attention or
26
+ advances
27
+ * Trolling, insulting/derogatory comments, and personal or political attacks
28
+ * Public or private harassment
29
+ * Publishing others' private information, such as a physical or electronic
30
+ address, without explicit permission
31
+ * Other conduct which could reasonably be considered inappropriate in a
32
+ professional setting
33
+
34
+ ## Our Responsibilities
35
+
36
+ Project maintainers are responsible for clarifying the standards of acceptable
37
+ behavior and are expected to take appropriate and fair corrective action in
38
+ response to any instances of unacceptable behavior.
39
+
40
+ Project maintainers have the right and responsibility to remove, edit, or
41
+ reject comments, commits, code, wiki edits, issues, and other contributions
42
+ that are not aligned to this Code of Conduct, or to ban temporarily or
43
+ permanently any contributor for other behaviors that they deem inappropriate,
44
+ threatening, offensive, or harmful.
45
+
46
+ ## Scope
47
+
48
+ This Code of Conduct applies both within project spaces and in public spaces
49
+ when an individual is representing the project or its community. Examples of
50
+ representing a project or community include using an official project e-mail
51
+ address, posting via an official social media account, or acting as an appointed
52
+ representative at an online or offline event. Representation of a project may be
53
+ further defined and clarified by project maintainers.
54
+
55
+ ## Enforcement
56
+
57
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
58
+ reported by contacting the project team at peter@realityforge.org. All
59
+ complaints will be reviewed and investigated and will result in a response that
60
+ is deemed necessary and appropriate to the circumstances. The project team is
61
+ obligated to maintain confidentiality with regard to the reporter of an incident.
62
+ Further details of specific enforcement policies may be posted separately.
63
+
64
+ Project maintainers who do not follow or enforce the Code of Conduct in good
65
+ faith may face temporary or permanent repercussions as determined by other
66
+ members of the project's leadership.
67
+
68
+ ## Attribution
69
+
70
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71
+ available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
72
+
73
+ [homepage]: https://www.contributor-covenant.org
@@ -1,19 +1,34 @@
1
1
  # How to Contribute
2
2
 
3
- Pull requests are greatly appreciated and are what makes opensource great. Here's a quick guide:
3
+ We'd love to accept your patches and contributions to this project. Pull requests are part of
4
+ what makes open source great. There are just a few small guidelines you need to follow.
4
5
 
5
- * Fork it
6
- * Create your feature branch (`git checkout -b my-new-feature`)
7
- * Commit your changes (`git commit -am 'Add some feature'`)
8
- * Push to the branch (`git push origin my-new-feature`)
9
- * Create new Pull Request
6
+ ## Code of Conduct
10
7
 
11
- Pester us if we don't get your Pull Requests merged in a timely fashion. :)
8
+ Participation in this project comes under the [Contributor Covenant Code of Conduct](CODE_OF_CONDUCT.md)
9
+
10
+ ## Submitting code via Pull Requests
11
+
12
+ - We follow the [Github Pull Request Model](https://help.github.com/articles/about-pull-requests/) for
13
+ all contributions.
14
+ - For large bodies of work, we recommend creating an issue outlining the feature that you wish to build,
15
+ and describing how it will be implemented. This gives a chance for review to happen early, and ensures
16
+ no wasted effort occurs.
17
+ - All submissions, will require review before being merged.
18
+ - Finally - *Thanks* for considering submitting code to the project!
19
+
20
+ ## Formatting
21
+
22
+ When submitting pull requests, make sure to do the following:
23
+
24
+ - Maintain the same code style as the rest of the project.
25
+ - Remove trailing whitespace. Many editors will do this automatically.
26
+ - Ensure any new files have [a trailing newline](https://stackoverflow.com/questions/5813311/no-newline-at-end-of-file)
12
27
 
13
28
  ## How to speed the merging of pull requests
14
29
 
15
- * Describe your changes in the CHANGELOG.
16
- * Give yourself some credit in the appropriate place (usually the CHANGELOG).
30
+ * Describe your changes in the CHANGELOG.md (if present).
31
+ * Give yourself some credit in the appropriate place (usually the CHANGELOG.md).
17
32
  * Make commits of logical units.
18
33
  * Ensure your commit messages help others understand what you are doing and why.
19
34
  * Check for unnecessary whitespace with `git diff --check` before committing.
@@ -23,4 +38,6 @@ Pester us if we don't get your Pull Requests merged in a timely fashion. :)
23
38
  ## Additional Resources
24
39
 
25
40
  * [General GitHub documentation](http://help.github.com/)
26
- * [GitHub pull request documentation](http://help.github.com/send-pull-requests/)
41
+ * [How to write a good Git Commit message](https://chris.beams.io/posts/git-commit/) -
42
+ Great way to make sure your Pull Requests get accepted.
43
+ * [An Open Source Etiquette Guidebook](https://css-tricks.com/open-source-etiquette-guidebook/#article-header-id-1)
@@ -6,6 +6,11 @@
6
6
 
7
7
  # Requirements
8
8
 
9
+
10
+ ## Chef Client:
11
+
12
+ *No Chef versions defined*
13
+
9
14
  ## Platform:
10
15
 
11
16
  * cookbook-authors
@@ -12,6 +12,17 @@
12
12
  <%= fragments['requirements'] -%>
13
13
 
14
14
  <% end -%>
15
+
16
+ ## Chef Client:
17
+
18
+ <% unless chef_versions.empty? %>
19
+ <% chef_versions.each do |chef_version| %>
20
+ * <%= chef_version %>
21
+ <% end %>
22
+ <% else %>
23
+ *No Chef versions defined*
24
+ <% end %>
25
+
15
26
  ## Platform:
16
27
 
17
28
  <% unless platforms.empty? %>
@@ -96,6 +96,16 @@ module KnifeCookbookDoc
96
96
  end
97
97
  end
98
98
 
99
+ def chef_versions
100
+ if @metadata.methods.include?(:chef_version)
101
+ @metadata.chef_versions.map do |chef_version, version|
102
+ format_constraint(chef_version, version)
103
+ end
104
+ else
105
+ []
106
+ end
107
+ end
108
+
99
109
  def dependencies
100
110
  @metadata.dependencies.map do |cookbook, version|
101
111
  format_constraint(cookbook, version)
@@ -103,20 +113,32 @@ module KnifeCookbookDoc
103
113
  end
104
114
 
105
115
  def recommendations
106
- @metadata.recommendations.map do |cookbook, version|
107
- format_constraint(cookbook, version)
116
+ if @metadata.methods.include?(:recommendations)
117
+ @metadata.recommendations.map do |cookbook, version|
118
+ format_constraint(cookbook, version)
119
+ end
120
+ else
121
+ []
108
122
  end
109
123
  end
110
124
 
111
125
  def suggestions
112
- @metadata.suggestions.map do |cookbook, version|
113
- format_constraint(cookbook, version)
126
+ if @metadata.methods.include?(:suggestions)
127
+ @metadata.suggestions.map do |cookbook, version|
128
+ format_constraint(cookbook, version)
129
+ end
130
+ else
131
+ []
114
132
  end
115
133
  end
116
134
 
117
135
  def conflicting
118
- @metadata.conflicting.map do |cookbook, version|
119
- format_constraint(cookbook, version)
136
+ if @metadata.methods.include?(:conflicting)
137
+ @metadata.conflicting.map do |cookbook, version|
138
+ format_constraint(cookbook, version)
139
+ end
140
+ else
141
+ []
120
142
  end
121
143
  end
122
144
 
@@ -1,3 +1,3 @@
1
1
  module KnifeCookbookDoc
2
- VERSION = '0.24.1'
2
+ VERSION = '0.24.2'
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: knife-cookbook-doc
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.24.1
4
+ version: 0.24.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Mathias Lafeldt
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: bin
11
11
  cert_chain: []
12
- date: 2017-10-01 00:00:00.000000000 Z
12
+ date: 2018-12-17 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: chef
@@ -76,9 +76,11 @@ extensions: []
76
76
  extra_rdoc_files: []
77
77
  files:
78
78
  - ".gitattributes"
79
+ - ".github/ISSUE_TEMPLATE.md"
79
80
  - ".gitignore"
80
81
  - ".travis.yml"
81
82
  - CHANGELOG.md
83
+ - CODE_OF_CONDUCT.md
82
84
  - CONTRIBUTING.md
83
85
  - Gemfile
84
86
  - LICENSE