koma 0.2.0 → 0.3.0
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/README.md +36 -4
- data/lib/koma/cli.rb +3 -3
- data/lib/koma/ext/specinfra/command/redhat/base/inventory.rb +4 -0
- data/lib/koma/ext/specinfra/command/redhat/v7/inventory.rb +7 -0
- data/lib/koma/ext/specinfra/host_inventory/base.rb +35 -0
- data/lib/koma/ext/specinfra/host_inventory/parser/base.rb +16 -0
- data/lib/koma/ext/specinfra/host_inventory/parser/redhat/base/service.rb +19 -0
- data/lib/koma/ext/specinfra/host_inventory/parser/redhat/base.rb +2 -0
- data/lib/koma/ext/specinfra/host_inventory/parser/redhat/v7/service.rb +19 -0
- data/lib/koma/ext/specinfra/host_inventory/parser/redhat/v7.rb +1 -0
- data/lib/koma/ext/specinfra/host_inventory/parser/redhat.rb +2 -0
- data/lib/koma/ext/specinfra/host_inventory/parser.rb +10 -0
- data/lib/koma/ext/specinfra/host_inventory/service.rb +20 -0
- data/lib/koma/ext/specinfra/host_inventory.rb +4 -1
- data/lib/koma/ext.rb +3 -0
- data/lib/koma/version.rb +1 -1
- data/stdout_sample.json +3885 -0
- metadata +13 -2
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: koma
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- k1LoW
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-04-
|
11
|
+
date: 2016-04-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|
@@ -161,11 +161,22 @@ files:
|
|
161
161
|
- lib/koma/ext.rb
|
162
162
|
- lib/koma/ext/specinfra/command/base/inventory.rb
|
163
163
|
- lib/koma/ext/specinfra/command/redhat/base/inventory.rb
|
164
|
+
- lib/koma/ext/specinfra/command/redhat/v7/inventory.rb
|
164
165
|
- lib/koma/ext/specinfra/host_inventory.rb
|
166
|
+
- lib/koma/ext/specinfra/host_inventory/base.rb
|
165
167
|
- lib/koma/ext/specinfra/host_inventory/group.rb
|
166
168
|
- lib/koma/ext/specinfra/host_inventory/package.rb
|
169
|
+
- lib/koma/ext/specinfra/host_inventory/parser.rb
|
170
|
+
- lib/koma/ext/specinfra/host_inventory/parser/base.rb
|
171
|
+
- lib/koma/ext/specinfra/host_inventory/parser/redhat.rb
|
172
|
+
- lib/koma/ext/specinfra/host_inventory/parser/redhat/base.rb
|
173
|
+
- lib/koma/ext/specinfra/host_inventory/parser/redhat/base/service.rb
|
174
|
+
- lib/koma/ext/specinfra/host_inventory/parser/redhat/v7.rb
|
175
|
+
- lib/koma/ext/specinfra/host_inventory/parser/redhat/v7/service.rb
|
176
|
+
- lib/koma/ext/specinfra/host_inventory/service.rb
|
167
177
|
- lib/koma/ext/specinfra/host_inventory/user.rb
|
168
178
|
- lib/koma/version.rb
|
179
|
+
- stdout_sample.json
|
169
180
|
homepage: https://github.com/k1LoW/koma
|
170
181
|
licenses:
|
171
182
|
- MIT
|