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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 774d2836732139cdc48afb423c32079076007d70
4
- data.tar.gz: 4b66ed12f74c487132733f5d78508b2876507636
3
+ metadata.gz: 9f5cec055c4a0b8e9530e857832a5ac739a5f0a2
4
+ data.tar.gz: 71a943a42d3da17e4f5c944194b7411dfcc52327
5
5
  SHA512:
6
- metadata.gz: 83a5d5075693f7360c9f607f82d5d665955a99d3ecaf00417e789f2a0e572736e436b24801d73b92a1e19427b6d8a538cefdb43a49d257e52c3ddf083ae228b7
7
- data.tar.gz: 7141efb2e5ce770b50e71e246aa9d75df2ea0e4f5f80952836bd551cf1eb0c3794926ded3ea760ff1750f52fefcf7aa22842a9b33ab5c0b1cc4c8a989e3a2788
6
+ metadata.gz: 8aed020d62b8acb8d00d3438f03a5e84cdee9e4a9e60b7807d1376d3aa6236a75d0f0e8b132c44ddccf3b7abfb349686e0d1e19a38c37eb6a13112dd86ddea37
7
+ data.tar.gz: 8eda228cf51b1c9bb0364b96ba7abba0684fe0c30031d981b70413692b653d1d6996ff245fff6c35ba292c8f9428a90c9d7f568be8787266ff87048fabb8611d
data/.semver CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 0
4
- :patch: 2
4
+ :patch: 3
5
5
  :special: ''
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. | |
@@ -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.2 ruby lib
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.2"
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-05"
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: nil, plan: @exec, &block)
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.2
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-05 00:00:00.000000000 Z
11
+ date: 2016-06-06 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor