knife-attribute 0.1.1 → 0.1.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.
- data/README.md +2 -2
- data/knife-attribute.gemspec +1 -1
- data/lib/knife-attribute/version.rb +1 -1
- metadata +4 -5
data/README.md
CHANGED
|
@@ -54,7 +54,7 @@ Unlike other actions, by default the `get` action will return the combined
|
|
|
54
54
|
specified.
|
|
55
55
|
|
|
56
56
|
```bash
|
|
57
|
-
knife node attribute
|
|
57
|
+
knife node attribute get foo.example.org apache.listen_ports -t override -F json
|
|
58
58
|
```
|
|
59
59
|
|
|
60
60
|
The above would get the `foo.example.org` node's `override` attribute
|
|
@@ -71,7 +71,7 @@ knife node attribute delete foo.example.org tz
|
|
|
71
71
|
The above would delete the `foo.example.org` node's `normal` attribute `tz`.
|
|
72
72
|
|
|
73
73
|
```bash
|
|
74
|
-
knife node attribute
|
|
74
|
+
knife node attribute delete foo.example.org apache.listen_ports -t override
|
|
75
75
|
```
|
|
76
76
|
|
|
77
77
|
The above would delete the `foo.example.org` node's `override` attribute.
|
data/knife-attribute.gemspec
CHANGED
|
@@ -8,7 +8,7 @@ Gem::Specification.new do |spec|
|
|
|
8
8
|
spec.version = KnifeAttribute::VERSION
|
|
9
9
|
spec.authors = ['Peter Fern']
|
|
10
10
|
spec.email = ['ruby@0xc0dedbad.com']
|
|
11
|
-
spec.description = %q{Manipulate
|
|
11
|
+
spec.description = %q{Manipulate Chef attributes (currently only for nodes) via Knife}
|
|
12
12
|
spec.summary = %q{Manipulate Chef attributes via Knife}
|
|
13
13
|
spec.homepage = 'https://github.com/pdf/knife-attribute'
|
|
14
14
|
spec.license = 'MIT'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: knife-attribute
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.2
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -59,8 +59,7 @@ dependencies:
|
|
|
59
59
|
- - ! '>='
|
|
60
60
|
- !ruby/object:Gem::Version
|
|
61
61
|
version: '0'
|
|
62
|
-
description: Manipulate
|
|
63
|
-
via Knife
|
|
62
|
+
description: Manipulate Chef attributes (currently only for nodes) via Knife
|
|
64
63
|
email:
|
|
65
64
|
- ruby@0xc0dedbad.com
|
|
66
65
|
executables: []
|
|
@@ -99,7 +98,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
99
98
|
version: '0'
|
|
100
99
|
segments:
|
|
101
100
|
- 0
|
|
102
|
-
hash:
|
|
101
|
+
hash: -2202112453603936614
|
|
103
102
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
104
103
|
none: false
|
|
105
104
|
requirements:
|
|
@@ -108,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
108
107
|
version: '0'
|
|
109
108
|
segments:
|
|
110
109
|
- 0
|
|
111
|
-
hash:
|
|
110
|
+
hash: -2202112453603936614
|
|
112
111
|
requirements: []
|
|
113
112
|
rubyforge_project:
|
|
114
113
|
rubygems_version: 1.8.25
|