ansible-powerplay 1.4.1 → 1.4.2

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: 2e5ae3579a0470240636186bfe8f2fb065ffa6cd
4
- data.tar.gz: 51bf4c32b494f6e79f8ee9524956046cc02355d6
3
+ metadata.gz: c0e62c4c5782c1485d7fbd4b352ea890bfc06356
4
+ data.tar.gz: bc0b0a70e4d1908dfcf61f4f9dda10f16a3e3cdf
5
5
  SHA512:
6
- metadata.gz: b7022871a959ee52413849ac7e30036d7fcd0c8aed769ce62049809a4c0d19f6cc5d55c708ebb872601b46ce946eba5cd4e41f14f6a414a2c940ee85b651a483
7
- data.tar.gz: d7265ac64703c1361520c07f2ec4a7a0026a776ef0ccd8a3643cb87188cc580758b7c44ffb5479ca62eb4d1f6692ba7432ba278018b8e819f7098d1ac35df462
6
+ metadata.gz: 250a703e4b744914e431a6a8fb928b79a42dcc6f9a64bd1229d362acc90e982e639a787a2c600f785b57520085691ce21b1b5fe753309acbcf99d31a35a17351
7
+ data.tar.gz: bbe3dc4f3f9ba9e6372f8f98eead4201a3e09a0135db62bfc149b858d50bc26923d038cdd3ee7e262c939173c67e20dea924e11dac3f2542965577e478b69e5e
data/.semver CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 1
3
3
  :minor: 4
4
- :patch: 1
4
+ :patch: 2
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.4.2 | Crashes with the -b option | Simple bug fix here | 2016-09-07 |
12
13
  | v1.4.1 | Dsl.config_var, lambda | A means to extract the current config variables in the powerplay, as well as a means to do lambdas. Not recommended for use yet. | 2016-09-05 |
13
14
  | v1.4.0 | --extra-vars passed as JSON, config referencing | We now convert the variables to JSON before passing to --extra-vars, and also now allow you to reference the config variables in the squence. | 2016-09-02 |
14
15
  | | | Know that the -m parameter, since it is a bit more general, now requires you to put in an '=' if the string is adjacent to the -m, e.g. -m=0:2 | |
@@ -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.4.1 ruby lib
5
+ # stub: ansible-powerplay 1.4.2 ruby lib
6
6
 
7
7
  Gem::Specification.new do |s|
8
8
  s.name = "ansible-powerplay"
9
- s.version = "1.4.1"
9
+ s.version = "1.4.2"
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-09-05"
14
+ s.date = "2016-09-07"
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"]
@@ -31,7 +31,7 @@ module Powerplay
31
31
  # Note that this code is a bit innefficient, but will only be
32
32
  # executed once in the loop.
33
33
  def self.pane_ttys
34
- @window = if Play::clopts.nil? or Play::clopts[:tmux].split(':').first.to_i == 0
34
+ @window = if Play::clopts.nil? or Play::clopts[:tmux].nil? or Play::clopts[:tmux].split(':').first.to_i == 0
35
35
  ''
36
36
  else
37
37
  " -t #{Play::clopts[:tmux].split(':').first} "
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.4.1
4
+ version: 1.4.2
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-09-05 00:00:00.000000000 Z
11
+ date: 2016-09-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: thor