orchestrator_client 0.2.2 → 0.2.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile +7 -3
- data/lib/orchestrator_client/error.rb +2 -2
- data/lib/orchestrator_client/version.rb +1 -1
- data/orchestrator_client.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e125b670d73a1d5b36e3e76116e5efbc18032689
|
4
|
+
data.tar.gz: c6f9a1f1b9446392ecb09063b4ff45058064618d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 17453772de464fd1ff1a2fb7b420d00a8092ccd6d4597b7db2bb1e7c4b425653a31fe9cb08b9dcd862eed07db9b6dce5fb02cf090e9fe934ffaab6504cc674af
|
7
|
+
data.tar.gz: 24ff1604ae222e4e1532ee5b06da095c0b6c9084f0ab0214bae1aed4772c6b5cee97173c0d481a20bbe31a5d7f43e27faf2c391ea902c3d20c14c3e59271d459
|
data/Gemfile
CHANGED
@@ -3,11 +3,11 @@ class OrchestratorClient::ConfigError < RuntimeError
|
|
3
3
|
end
|
4
4
|
|
5
5
|
class OrchestratorClient::ApiError < RuntimeError
|
6
|
+
attr_reader :data, :code
|
6
7
|
|
7
8
|
def initialize(data,code)
|
8
9
|
@code = code
|
9
|
-
@
|
10
|
-
@details = data['details']
|
10
|
+
@data = data
|
11
11
|
super(data['msg'])
|
12
12
|
end
|
13
13
|
|
data/orchestrator_client.gemspec
CHANGED
@@ -11,7 +11,7 @@ Gem::Specification.new do |s|
|
|
11
11
|
s.files = `git ls-files -z`.split("\x0").reject do |f|
|
12
12
|
f.match(%r{^(spec|scripts)/})
|
13
13
|
end
|
14
|
-
s.homepage = 'https://github.com/puppetlabs/ruby
|
14
|
+
s.homepage = 'https://github.com/puppetlabs/orchestrator_client-ruby'
|
15
15
|
s.license = "Apache-2.0"
|
16
16
|
s.require_paths = ["lib"]
|
17
17
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: orchestrator_client
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.3
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Puppet
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2018-02-23 00:00:00.000000000 Z
|
12
12
|
dependencies: []
|
13
13
|
description:
|
14
14
|
email: info@puppetlabs.com
|
@@ -29,7 +29,7 @@ files:
|
|
29
29
|
- lib/orchestrator_client/jobs.rb
|
30
30
|
- lib/orchestrator_client/version.rb
|
31
31
|
- orchestrator_client.gemspec
|
32
|
-
homepage: https://github.com/puppetlabs/ruby
|
32
|
+
homepage: https://github.com/puppetlabs/orchestrator_client-ruby
|
33
33
|
licenses:
|
34
34
|
- Apache-2.0
|
35
35
|
metadata: {}
|
@@ -49,7 +49,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
49
49
|
version: '0'
|
50
50
|
requirements: []
|
51
51
|
rubyforge_project:
|
52
|
-
rubygems_version: 2.
|
52
|
+
rubygems_version: 2.5.1
|
53
53
|
signing_key:
|
54
54
|
specification_version: 4
|
55
55
|
summary: Simple Ruby client library for PE Orchestration Services
|