ansible-powerplay 0.1.0 → 0.1.1
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/.semver +1 -1
- data/RELEASE_NOTES.org +6 -0
- data/ansible-powerplay.gemspec +2 -2
- data/lib/ansible-powerplay/cli.rb +2 -2
- 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: d6c839d1462aa167126cd018e5d67ad2280ca7bf
|
|
4
|
+
data.tar.gz: 4f0e0f8f29a6e60b2342c05313df1169ea55a6cf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d80dc56ad99056ee129bf2dd1e92e7bbf0876a49685f435da90fc0143ccdcbe1192739360d170c927c9187bbd64aff94f5c4dff128d6d485d8908774fca43547
|
|
7
|
+
data.tar.gz: 086864cb0a53668d87b05e6c5afaf9d28010cbf6d37b4f0d3f5de8c5f1d584f5c9a32031162e305e607c4353002c1b4d5d4f21f899f09b080427b5d927dedce3
|
data/.semver
CHANGED
data/RELEASE_NOTES.org
CHANGED
|
@@ -9,6 +9,12 @@
|
|
|
9
9
|
** Relases
|
|
10
10
|
Newer entries shall be listed first.
|
|
11
11
|
|
|
12
|
+
|
|
13
|
+
*** v0.1.1 2016-02-22
|
|
14
|
+
| Feature / Bug | Description |
|
|
15
|
+
| --book, --group, --play | Minor bug with the array handling |
|
|
16
|
+
| | |
|
|
17
|
+
|
|
12
18
|
*** v0.1.0 2016-02-22
|
|
13
19
|
| Feature / Bug | Description |
|
|
14
20
|
|-------------------------+-------------------------------------------|
|
data/ansible-powerplay.gemspec
CHANGED
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
# DO NOT EDIT THIS FILE DIRECTLY
|
|
3
3
|
# Instead, edit Juwelier::Tasks in Rakefile, and run 'rake gemspec'
|
|
4
4
|
# -*- encoding: utf-8 -*-
|
|
5
|
-
# stub: ansible-powerplay 0.1.
|
|
5
|
+
# stub: ansible-powerplay 0.1.1 ruby lib
|
|
6
6
|
|
|
7
7
|
Gem::Specification.new do |s|
|
|
8
8
|
s.name = "ansible-powerplay"
|
|
9
|
-
s.version = "0.1.
|
|
9
|
+
s.version = "0.1.1"
|
|
10
10
|
|
|
11
11
|
s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
|
|
12
12
|
s.require_paths = ["lib"]
|
|
@@ -15,9 +15,9 @@ module Powerplay
|
|
|
15
15
|
LONGDESC
|
|
16
16
|
option :tmux, type: :numeric, lazy_default: 0, aliases: '-m', banner: "[WINDOWNUMBERopt] Send output to all tmux panes in the current window, or the numeric window specified."
|
|
17
17
|
option :play, type: :array, aliases: '-p', banner: "[NAME[ NAME2...]|all] Which playbook shelves", required: true
|
|
18
|
-
option :group, type: :array, aliases: '-g', banner: "[NAME[ NAME2...]|all] Which groups to execute", default:
|
|
18
|
+
option :group, type: :array, aliases: '-g', banner: "[NAME[ NAME2...]|all] Which groups to execute", default: [:all]
|
|
19
19
|
option :congroups, type: :boolean, aliases: '-c', banner: "Run the groups themselves concurrently"
|
|
20
|
-
option :book, type: :array, aliases: '-b', banner: "[NAME[ NAME2...]|all] Which books to execute", default:
|
|
20
|
+
option :book, type: :array, aliases: '-b', banner: "[NAME[ NAME2...]|all] Which books to execute", default: [:all]
|
|
21
21
|
option :dryrun, type: :boolean, aliases: '-u', banner: "Dry run, do not actually execute."
|
|
22
22
|
def play(script)
|
|
23
23
|
DSL::_global[:options] = options
|