train 0.25.0 → 0.26.0
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 +19 -2
- data/lib/train/extras/os_detect_unix.rb +1 -0
- data/lib/train/extras/stat.rb +1 -1
- data/lib/train/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a44ab3d79a850ef26c122ec81a810f4ad7076ad6
|
|
4
|
+
data.tar.gz: d80360cb6a0282208d195364adb711d72faddae1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2a71561d8d10ad14ea361c51cabd0dda1f7969eaf4596fe2e0222589a8661d807ee878bcfd68165e671650db909bfaa49ce95b40d6ec67dae5a9e0ddda65d584
|
|
7
|
+
data.tar.gz: 964817b4bc4cd4e0ef59a1157dfe4a4f601ad6ce05823642b9f03a4f73c6483d8ca832d4214d32964e792a3d54e5dbe33ae035498f3b78979d07a3ed59b25ea7
|
data/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,24 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
## [0.
|
|
4
|
-
[Full Changelog](https://github.com/chef/train/compare/v0.
|
|
3
|
+
## [0.26.0](https://github.com/chef/train/tree/0.26.0) (2017-08-10)
|
|
4
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.25.0...0.26.0)
|
|
5
|
+
|
|
6
|
+
**Fixed bugs:**
|
|
7
|
+
|
|
8
|
+
- AIX operating system name is not detected properly [\#181](https://github.com/chef/train/issues/181)
|
|
9
|
+
|
|
10
|
+
**Closed issues:**
|
|
11
|
+
|
|
12
|
+
- Add support for ssh-agent to ssh transport [\#129](https://github.com/chef/train/issues/129)
|
|
13
|
+
|
|
14
|
+
**Merged pull requests:**
|
|
15
|
+
|
|
16
|
+
- typo - should $g for group instead of doulbe $u [\#185](https://github.com/chef/train/pull/185) ([aklyachkin](https://github.com/aklyachkin))
|
|
17
|
+
- update ruby requirements to 2.2 - 2.4 range [\#184](https://github.com/chef/train/pull/184) ([arlimus](https://github.com/arlimus))
|
|
18
|
+
- detect operating system name for AIX [\#182](https://github.com/chef/train/pull/182) ([chris-rock](https://github.com/chris-rock))
|
|
19
|
+
|
|
20
|
+
## [v0.25.0](https://github.com/chef/train/tree/v0.25.0) (2017-06-15)
|
|
21
|
+
[Full Changelog](https://github.com/chef/train/compare/v0.24.0...v0.25.0)
|
|
5
22
|
|
|
6
23
|
**Merged pull requests:**
|
|
7
24
|
|
data/lib/train/extras/stat.rb
CHANGED
|
@@ -107,7 +107,7 @@ module Train::Extras
|
|
|
107
107
|
@a = #{lstat}(shift) or exit 2;
|
|
108
108
|
$u = getpwuid($a[4]);
|
|
109
109
|
$g = getgrgid($a[5]);
|
|
110
|
-
printf("0%o\\n%s\\n%d\\n%s\\n%d\\n%d\\n%d\\n", $a[2], $u, $a[4], $
|
|
110
|
+
printf("0%o\\n%s\\n%d\\n%s\\n%d\\n%d\\n%d\\n", $a[2], $u, $a[4], $g, $a[5], $a[9], $a[7])
|
|
111
111
|
' #{shell_escaped_path}
|
|
112
112
|
EOP
|
|
113
113
|
|
data/lib/train/version.rb
CHANGED
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: 0.
|
|
4
|
+
version: 0.26.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Dominik Richter
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2017-
|
|
11
|
+
date: 2017-08-10 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: json
|