ansible-powerplay 0.1.0 → 0.1.1

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: f25748f52817b7fd4aeefedfc5f7238ce59d3992
4
- data.tar.gz: b17865d40e37fbcf118255d869b39ebabe465283
3
+ metadata.gz: d6c839d1462aa167126cd018e5d67ad2280ca7bf
4
+ data.tar.gz: 4f0e0f8f29a6e60b2342c05313df1169ea55a6cf
5
5
  SHA512:
6
- metadata.gz: 27c502f1dc1c04ad19f683cee0bd8d84e8272c5b1634fa2ed67d508763f2690273fc245645874939b70bf95312f41374333b83da7d501e9c35690f8bca629f93
7
- data.tar.gz: bdf284f71921605cee317de9f034b1cf3f76be9cedd3b8af5f4f93a3a22fe9f7962520f4da7bf3b26339b790da4faa5f384aed8cdc4628530284f47c0e06b64f
6
+ metadata.gz: d80dc56ad99056ee129bf2dd1e92e7bbf0876a49685f435da90fc0143ccdcbe1192739360d170c927c9187bbd64aff94f5c4dff128d6d485d8908774fca43547
7
+ data.tar.gz: 086864cb0a53668d87b05e6c5afaf9d28010cbf6d37b4f0d3f5de8c5f1d584f5c9a32031162e305e607c4353002c1b4d5d4f21f899f09b080427b5d927dedce3
data/.semver CHANGED
@@ -1,5 +1,5 @@
1
1
  ---
2
2
  :major: 0
3
3
  :minor: 1
4
- :patch: 0
4
+ :patch: 1
5
5
  :special: ''
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
  |-------------------------+-------------------------------------------|
@@ -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.0 ruby lib
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.0"
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: "all"
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: "all"
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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ansible-powerplay
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Fred Mitchell