train 1.4.19 → 1.4.21
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- 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.gemspec +2 -2
- metadata +4 -4
data/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# Train - Transport Interface
|
|
2
2
|
|
|
3
|
-
[](https://travis-ci.org/inspec/train)
|
|
4
|
+
[](https://ci.appveyor.com/project/Chef/train/branch/master)
|
|
5
5
|
[](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.gemspec
CHANGED
|
@@ -7,10 +7,10 @@ Gem::Specification.new do |spec|
|
|
|
7
7
|
spec.name = 'train'
|
|
8
8
|
spec.version = Train::VERSION
|
|
9
9
|
spec.authors = ['Dominik Richter']
|
|
10
|
-
spec.email = ['
|
|
10
|
+
spec.email = ['drichter@chef.io']
|
|
11
11
|
spec.summary = 'Transport interface to talk to different backends.'
|
|
12
12
|
spec.description = 'Transport interface to talk to different backends.'
|
|
13
|
-
spec.homepage = 'https://github.com/
|
|
13
|
+
spec.homepage = 'https://github.com/inspec/train/'
|
|
14
14
|
spec.license = 'Apache-2.0'
|
|
15
15
|
|
|
16
16
|
spec.files = %w{
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: train
|
|
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: json
|
|
@@ -220,7 +220,7 @@ dependencies:
|
|
|
220
220
|
version: '1.1'
|
|
221
221
|
description: Transport interface to talk to different backends.
|
|
222
222
|
email:
|
|
223
|
-
-
|
|
223
|
+
- drichter@chef.io
|
|
224
224
|
executables: []
|
|
225
225
|
extensions: []
|
|
226
226
|
extra_rdoc_files: []
|
|
@@ -341,7 +341,7 @@ files:
|
|
|
341
341
|
- test/windows/local_test.rb
|
|
342
342
|
- test/windows/winrm_test.rb
|
|
343
343
|
- train.gemspec
|
|
344
|
-
homepage: https://github.com/
|
|
344
|
+
homepage: https://github.com/inspec/train/
|
|
345
345
|
licenses:
|
|
346
346
|
- Apache-2.0
|
|
347
347
|
metadata: {}
|