power_stencil 0.3.1 → 0.3.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 +4 -4
- data/README.md +1 -1
- data/doc/plugins.md +1 -1
- data/etc/base_commands_definition.yml +1 -1
- data/etc/power_stencil.yaml +3 -2
- data/lib/power_stencil/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7736f19eb314bb8a662792b159f223d4375a88c6
|
|
4
|
+
data.tar.gz: ceed2b532f89506d4c1a4c94fcf7eb11b05c1c56
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 74e89da925a8e158de5d3efa4d8ac57d869ad8f4a03ca86dab7d41b109abe70f6daaef21a399ab194ff2a2a53a9e55b6fbbbed5ab3dc2849cd46949500531f2f
|
|
7
|
+
data.tar.gz: 96814a5d1ef98ca8a6e78e047c194c9f8e7ad45612d24db35eeb4f4e35dbcc98e901024bdeee55511b48df57933c8739ba8e2cbe76263b18d0e86929017201cb
|
data/README.md
CHANGED
|
@@ -70,7 +70,7 @@ The `power_stencil` CLI provides a contextual help. You can start by:
|
|
|
70
70
|
That will display a basic help:
|
|
71
71
|
|
|
72
72
|
```shell
|
|
73
|
-
|
|
73
|
+
PowerStencil is the Swiss-army knife templating workflow for developers and ops.
|
|
74
74
|
-- Options ---------------------------------------------------------------------
|
|
75
75
|
-v, --verbose Displays extra runtime information.
|
|
76
76
|
-h, --help Displays this help.
|
data/doc/plugins.md
CHANGED
|
@@ -102,7 +102,7 @@ Let's try to see to help:
|
|
|
102
102
|
|
|
103
103
|
```shell
|
|
104
104
|
$ power_stencil --help
|
|
105
|
-
|
|
105
|
+
PowerStencil is the Swiss-army knife templating workflow for developers and ops.
|
|
106
106
|
-- Options ---------------------------------------------------------------------
|
|
107
107
|
-v, --verbose Displays extra runtime information.
|
|
108
108
|
-h, --help Displays this help.
|
data/etc/power_stencil.yaml
CHANGED
|
@@ -50,8 +50,9 @@
|
|
|
50
50
|
|
|
51
51
|
- Retrieve and manipulate entities using the `entities` hash.
|
|
52
52
|
- Persist your changes using the `save` method on each entity.
|
|
53
|
-
- Create new project or user entities using `new_<
|
|
54
|
-
methods (see `available_entity_types` for a list of
|
|
53
|
+
- Create new project or user entities using `new_<entity_type>` and
|
|
54
|
+
`user_new_<entity_type>` methods (see `available_entity_types` for a list of
|
|
55
|
+
possible types).
|
|
55
56
|
- And of course, it is a fully fledged Ruby Pry REPL, so you can do anything
|
|
56
57
|
you want...
|
|
57
58
|
|