ansible-powerplay 1.0.2 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.semver +1 -1
- data/RELEASE_NOTES.org +1 -0
- data/ansible-powerplay.gemspec +3 -3
- data/lib/ansible-powerplay/dsl.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f5cec055c4a0b8e9530e857832a5ac739a5f0a2
|
4
|
+
data.tar.gz: 71a943a42d3da17e4f5c944194b7411dfcc52327
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8aed020d62b8acb8d00d3438f03a5e84cdee9e4a9e60b7807d1376d3aa6236a75d0f0e8b132c44ddccf3b7abfb349686e0d1e19a38c37eb6a13112dd86ddea37
|
7
|
+
data.tar.gz: 8eda228cf51b1c9bb0364b96ba7abba0684fe0c30031d981b70413692b653d1d6996ff245fff6c35ba292c8f9428a90c9d7f568be8787266ff87048fabb8611d
|
data/.semver
CHANGED
data/RELEASE_NOTES.org
CHANGED
@@ -9,6 +9,7 @@
|
|
9
9
|
** Release Notes
|
10
10
|
| Release | Feature / Bug | Description | Date |
|
11
11
|
|---------+----------------------------------------+-----------------------------------------------------------------------------------------------+------------|
|
12
|
+
| v1.0.3 | DSL book | changed the named paramer back to the normal one. | 2061-06-08 |
|
12
13
|
| v1.0.0 | version | Prints version | 2061-06-04 |
|
13
14
|
| | powerplay / pp shorthand command | Play task defaults if you use the shorthand 'pp' on the commandline | 2061-06-04 |
|
14
15
|
| | DSL incompatible changes | Nestable groups, naked books. older DSL not gauranteed to be compatable. | |
|
data/ansible-powerplay.gemspec
CHANGED
@@ -2,16 +2,16 @@
|
|
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 1.0.
|
5
|
+
# stub: ansible-powerplay 1.0.3 ruby lib
|
6
6
|
|
7
7
|
Gem::Specification.new do |s|
|
8
8
|
s.name = "ansible-powerplay"
|
9
|
-
s.version = "1.0.
|
9
|
+
s.version = "1.0.3"
|
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"]
|
13
13
|
s.authors = ["Fred Mitchell"]
|
14
|
-
s.date = "2016-06-
|
14
|
+
s.date = "2016-06-06"
|
15
15
|
s.description = "Ansible Powerplay, by way of its DSL, allows you to\n specify your Ansible playbooks and their vars, and common\n vars to all, so that you can run your\n indeoendent playbooks in full parallel."
|
16
16
|
s.email = "fred.mitchell@gmx.de"
|
17
17
|
s.executables = ["powerplay", "pp"]
|
@@ -125,7 +125,7 @@ module Powerplay
|
|
125
125
|
_enqueue DslBook.new(:noop, nil, plan: @exec) unless @exec == :async or _sneak.type == :sync
|
126
126
|
end
|
127
127
|
|
128
|
-
def book(type, yaml, desc
|
128
|
+
def book(type, yaml, desc = nil, plan: @exec, &block)
|
129
129
|
raise ":noop is a reserved book type and cannot be used." if type == :noop
|
130
130
|
_enqueue DslBook.new(type, yaml,
|
131
131
|
desc: desc,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: ansible-powerplay
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Fred Mitchell
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-06-
|
11
|
+
date: 2016-06-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: thor
|