train-core 1.4.19 → 1.4.21
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +391 -385
- data/README.md +3 -3
- data/lib/train/transports/local.rb +1 -1
- data/lib/train/version.rb +1 -1
- data/train-core.gemspec +2 -2
- metadata +4 -4
data/README.md
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
# Train - Transport Interface
|
2
2
|
|
3
|
-
[![Build Status](https://travis-ci.org/
|
4
|
-
[![Build Status Master](https://ci.appveyor.com/api/projects/status/github/
|
3
|
+
[![Build Status](https://travis-ci.org/inspec/train.svg?branch=master)](https://travis-ci.org/inspec/train)
|
4
|
+
[![Build Status Master](https://ci.appveyor.com/api/projects/status/github/inspec/train?branch=master&svg=true&passingText=master%20-%20Ok&pendingText=master%20-%20Pending&failingText=master%20-%20Failing)](https://ci.appveyor.com/project/Chef/train/branch/master)
|
5
5
|
[![Gem Version](https://badge.fury.io/rb/train.svg)](https://badge.fury.io/rb/train)
|
6
6
|
|
7
7
|
Train lets you talk to your local or remote operating systems and APIs with a unified interface.
|
@@ -178,7 +178,7 @@ We also want to thank [halo](https://github.com/halo) who did a great contributi
|
|
178
178
|
|
179
179
|
| **Author:** | Christoph Hartmann (<chartmann@chef.io>)
|
180
180
|
|
181
|
-
| **Copyright:** | Copyright (c) 2015 Chef Software Inc.
|
181
|
+
| **Copyright:** | Copyright (c) 2015-2018 Chef Software Inc.
|
182
182
|
|
183
183
|
| **Copyright:** | Copyright (c) 2015 Vulcano Security GmbH.
|
184
184
|
|
@@ -206,7 +206,7 @@ module Train::Transports
|
|
206
206
|
$result = @{ 'stdout' = $stdout ; 'stderr' = ''; 'exitstatus' = 0 }
|
207
207
|
} catch {
|
208
208
|
$stderr = $_ | Out-String
|
209
|
-
$result = @{ 'stdout' = ''; 'stderr' = $
|
209
|
+
$result = @{ 'stdout' = ''; 'stderr' = $stderr; 'exitstatus' = 1 }
|
210
210
|
}
|
211
211
|
$resultJSON = $result | ConvertTo-JSON
|
212
212
|
|
data/lib/train/version.rb
CHANGED
data/train-core.gemspec
CHANGED
@@ -12,10 +12,10 @@ Gem::Specification.new do |spec|
|
|
12
12
|
spec.name = 'train-core'
|
13
13
|
spec.version = Train::VERSION
|
14
14
|
spec.authors = ['Dominik Richter']
|
15
|
-
spec.email = ['
|
15
|
+
spec.email = ['drichter@chef.io']
|
16
16
|
spec.summary = 'Transport interface to talk to a selected set of backends.'
|
17
17
|
spec.description = 'A minimal Train with a selected set of backends, ssh, winrm, and docker.'
|
18
|
-
spec.homepage = 'https://github.com/
|
18
|
+
spec.homepage = 'https://github.com/inspec/train/'
|
19
19
|
spec.license = 'Apache-2.0'
|
20
20
|
|
21
21
|
spec.files = %w{train-core.gemspec README.md LICENSE Gemfile CHANGELOG.md} + Dir
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: train-core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.4.
|
4
|
+
version: 1.4.21
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dominik Richter
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2018-
|
11
|
+
date: 2018-07-05 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: mixlib-shellout
|
@@ -46,7 +46,7 @@ dependencies:
|
|
46
46
|
version: '3.0'
|
47
47
|
description: A minimal Train with a selected set of backends, ssh, winrm, and docker.
|
48
48
|
email:
|
49
|
-
-
|
49
|
+
- drichter@chef.io
|
50
50
|
executables: []
|
51
51
|
extensions: []
|
52
52
|
extra_rdoc_files: []
|
@@ -90,7 +90,7 @@ files:
|
|
90
90
|
- lib/train/transports/mock.rb
|
91
91
|
- lib/train/version.rb
|
92
92
|
- train-core.gemspec
|
93
|
-
homepage: https://github.com/
|
93
|
+
homepage: https://github.com/inspec/train/
|
94
94
|
licenses:
|
95
95
|
- Apache-2.0
|
96
96
|
metadata: {}
|