ansible_tower_client 0.18.0 → 0.19.0

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
  SHA256:
3
- metadata.gz: 0fba830a6fa6820737e3aa09ea88b86132c10a4f08368ccb26eed957b01d674d
4
- data.tar.gz: ed5c4e64757f58632f17cdae613a1055907883e4a037798841ef6533fc73952d
3
+ metadata.gz: 2e521e11dfb720759a44642c73ce82b4de134a73aeed67d9aa36cf69684600b0
4
+ data.tar.gz: 97d9e5d785722b7cedeb349d1e467b617f866ab8761e8fc10b471c427556e059
5
5
  SHA512:
6
- metadata.gz: 5dc626b6aa63686bd5a25da898c539a2fee44e6e40a92fe576e755b58fd26e29dfa013b46d20ad32968c7aea00024b536e1ef5a0071ab3f763ea2387f4ce6d24
7
- data.tar.gz: edaa672cb12d9309b8e0da96faaa3508902d78badc4f76b79d900700c31306ed96403c8b7a4971e0c5f5138656d5c827a5f62bfe4380df6c08273ad69e857c33
6
+ metadata.gz: 767ab86b6240276c19d27aa048e0de0277b830e4daf96b52af5221f26d1680ae7f1d6022cc8b33235777ff876b22ae418c8f90d94078d5d117736b4d8940bac6
7
+ data.tar.gz: 490cbf7434ddf868bbc09cbf6121a10cdba8e14d6dbfddcbd5980f412959c3b54cbd560c18849f6302263e62ec44af6f1fc945603acf5f1a9b4205a801c4a445
@@ -5,6 +5,13 @@ This project adheres to [Semantic Versioning](http://semver.org/).
5
5
 
6
6
  ## [Unreleased]
7
7
 
8
+ ## [0.19.0] - 2018-11-19
9
+ ### Added
10
+ - Added ProjectUpdate#stdout [(#122)](https://github.com/ansible/ansible_tower_client_ruby/pull/122)
11
+
12
+ ### Fixed
13
+ - Aliased ProjectUpdate#result_stdout to #stdout to work around removed attribute [(#122)](https://github.com/ansible/ansible_tower_client_ruby/pull/122)
14
+
8
15
  ## [0.18.0] - 2018-09-13
9
16
  ### Added
10
17
  - Raise a helpful error message when options will be ignored in JobTemplate#launch [(#119)](https://github.com/ansible/ansible_tower_client_ruby/pull/119)
@@ -102,7 +109,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
102
109
  ### Fixed
103
110
  - Adjusted project_spec to test on a Project [(#63)](https://github.com/ansible/ansible_tower_client_ruby/pull/63)
104
111
 
105
- [Unreleased]: https://github.com/ansible/ansible_tower_client_ruby/compare/v0.18.0...master
112
+ [Unreleased]: https://github.com/ansible/ansible_tower_client_ruby/compare/v0.19.0...master
113
+ [0.19.0]: https://github.com/ansible/ansible_tower_client_ruby/compare/v0.18.0...v0.19.0
106
114
  [0.18.0]: https://github.com/ansible/ansible_tower_client_ruby/compare/v0.17.0...v0.18.0
107
115
  [0.17.0]: https://github.com/ansible/ansible_tower_client_ruby/compare/v0.16.0...v0.17.0
108
116
  [0.16.0]: https://github.com/ansible/ansible_tower_client_ruby/compare/v0.15.0...v0.16.0
@@ -1,4 +1,8 @@
1
1
  module AnsibleTowerClient
2
2
  class ProjectUpdate < BaseModel
3
+ def stdout(format = 'txt')
4
+ api.get("#{related['stdout']}?format=#{format}").body
5
+ end
6
+ alias result_stdout stdout
3
7
  end
4
8
  end
@@ -1,3 +1,5 @@
1
+ require 'openssl'
2
+
1
3
  module AnsibleTowerClient
2
4
  class Connection
3
5
  attr_reader :connection
@@ -1,3 +1,3 @@
1
1
  module AnsibleTowerClient
2
- VERSION = "0.18.0".freeze
2
+ VERSION = "0.19.0".freeze
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ansible_tower_client
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.18.0
4
+ version: 0.19.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Brandon Dunne
@@ -9,7 +9,7 @@ authors:
9
9
  autorequire:
10
10
  bindir: exe
11
11
  cert_chain: []
12
- date: 2018-09-13 00:00:00.000000000 Z
12
+ date: 2018-11-19 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport