chef-ruby-lvm-attrib 0.2.4 → 0.2.5
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 +4 -4
- data/.github/CODEOWNERS +5 -0
- data/.github/ISSUE_TEMPLATE.md +13 -0
- data/.github/PULL_REQUEST_TEMPLATE.md +14 -0
- data/.github/lock.yml +1 -0
- data/CHANGELOG.md +4 -0
- data/README.md +2 -4
- data/lib/lvm/attributes.rb +1 -1
- metadata +7 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4eed0cf171d7659380de014d4da45975b19d7036598ba3e88d13330561d46a73
|
|
4
|
+
data.tar.gz: 4c9362c200bf064395c83c6d53096a00fafa3737c01cc9655263ee7e8517b078
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7a5b1b38b53e2dc1a635d5ed05cc58164bf5829735db6d4f851d4f4a646534164d1de184b03c742570a253d03d2ef103c0d7e04ba5cc2e47b225c1a05d8600df
|
|
7
|
+
data.tar.gz: d1455dfa19ecae54c8a00c1b100028e4d49d655fa906427551dcde58994a3cb5358157f6a72468f0fdb85b36c301644db8237984840764a8b2bf7455629448e5
|
data/.github/CODEOWNERS
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
## Description
|
|
2
|
+
<!--- Briefly describe the issue -->
|
|
3
|
+
|
|
4
|
+
## Gem Version
|
|
5
|
+
<!--- Tell us which version of the gem you are using. -->
|
|
6
|
+
|
|
7
|
+
## Platform Version
|
|
8
|
+
|
|
9
|
+
Tell us which Operating System distribution and version you arerunning.
|
|
10
|
+
|
|
11
|
+
## Replication Case
|
|
12
|
+
<!--- Tell us what steps to take to replicate your problem. See [How to create a Minimal, Complete, and Verifiable example](https://stackoverflow.com/help/mcve)
|
|
13
|
+
for information on how to create a good replication case. -->
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
### Description
|
|
2
|
+
|
|
3
|
+
[Please describe what this change achieves]
|
|
4
|
+
|
|
5
|
+
### Issues Resolved
|
|
6
|
+
|
|
7
|
+
[List any existing issues this PR resolves, or any Discourse or
|
|
8
|
+
StackOverflow discussions that are relevant]
|
|
9
|
+
|
|
10
|
+
### Check List
|
|
11
|
+
|
|
12
|
+
- [ ] New functionality includes tests
|
|
13
|
+
- [ ] All tests pass
|
|
14
|
+
- [ ] All commits have been signed-off for the Developer Certificate of Origin. See <https://github.com/chef/chef/blob/master/CONTRIBUTING.md#developer-certification-of-origin-dco>
|
data/.github/lock.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
daysUntilLock: 60
|
data/CHANGELOG.md
CHANGED
data/README.md
CHANGED
|
@@ -28,9 +28,7 @@ sudo gem install ruby-lvm-attrib
|
|
|
28
28
|
|
|
29
29
|
To add attributes:
|
|
30
30
|
|
|
31
|
-
Use
|
|
32
|
-
|
|
33
|
-
<update-lvm.sh> script to add new version. Find the interested LVM2 tag from <a href="https://git.fedorahosted.org/cgit/lvm2.git/refs/tags">LVM2 Repository</a>.</update-lvm.sh>
|
|
31
|
+
Use `update-lvm.sh` script to add new version. Find the interested LVM2 tag from [LVM2 Repository](https://sourceware.org/git/?p=lvm2.git).
|
|
34
32
|
|
|
35
33
|
- Fork this repository
|
|
36
34
|
- `git clone your-forked-repo`
|
|
@@ -46,7 +44,7 @@ In case of error, see missing attribute type note below.
|
|
|
46
44
|
If all is well, publish the changes and make Pull Request from GitHub web:
|
|
47
45
|
|
|
48
46
|
- `git push origin mybranch`
|
|
49
|
-
- Submit PR to this repository.
|
|
47
|
+
- Submit PR to this repository.
|
|
50
48
|
|
|
51
49
|
### Missing Attribute Type:
|
|
52
50
|
|
data/lib/lvm/attributes.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: chef-ruby-lvm-attrib
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.2.
|
|
4
|
+
version: 0.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tim Smith
|
|
@@ -11,7 +11,7 @@ authors:
|
|
|
11
11
|
autorequire:
|
|
12
12
|
bindir: bin
|
|
13
13
|
cert_chain: []
|
|
14
|
-
date: 2018-
|
|
14
|
+
date: 2018-11-01 00:00:00.000000000 Z
|
|
15
15
|
dependencies: []
|
|
16
16
|
description: A list of attributes for LVM objects
|
|
17
17
|
email:
|
|
@@ -23,6 +23,10 @@ executables:
|
|
|
23
23
|
extensions: []
|
|
24
24
|
extra_rdoc_files: []
|
|
25
25
|
files:
|
|
26
|
+
- ".github/CODEOWNERS"
|
|
27
|
+
- ".github/ISSUE_TEMPLATE.md"
|
|
28
|
+
- ".github/PULL_REQUEST_TEMPLATE.md"
|
|
29
|
+
- ".github/lock.yml"
|
|
26
30
|
- ".gitignore"
|
|
27
31
|
- ".gitmodules"
|
|
28
32
|
- CHANGELOG.md
|
|
@@ -524,7 +528,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
524
528
|
version: '0'
|
|
525
529
|
requirements: []
|
|
526
530
|
rubyforge_project:
|
|
527
|
-
rubygems_version: 2.7.
|
|
531
|
+
rubygems_version: 2.7.7
|
|
528
532
|
signing_key:
|
|
529
533
|
specification_version: 4
|
|
530
534
|
summary: A list of attributes for LVM objects
|