airbrussh 1.1.0 → 1.1.1
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 +9 -1
- data/Gemfile +3 -0
- data/lib/airbrussh/capistrano/tasks.rb +6 -1
- data/lib/airbrussh/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: ff27fd1a5c3e6ace07ffc6a54deda2005d02f64c
|
|
4
|
+
data.tar.gz: 743213b31a1fe768fd1714c39a6ce1c79061810e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 92a73a5f3aed59273f10e20ded922862565a15ca967f4a65774653313a5ed6b82697a918db31afef12643867337dd18b0a8f61b2703fdd4d832faad8d2fa89fe
|
|
7
|
+
data.tar.gz: df0d147e5c9e99b7af580541cfc407adc500be6d21c7d218defa0a1a042075db92298891e5a92b860a2f4909637357e7c4ccad0a8b1bce2c34002d68287bc738
|
data/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file. This projec
|
|
|
6
6
|
|
|
7
7
|
* Your contribution here!
|
|
8
8
|
|
|
9
|
+
## [1.1.1][] (2016-09-09)
|
|
10
|
+
|
|
11
|
+
* When a Capistrano deploy fails and the error log is dumped to the console,
|
|
12
|
+
Airbrussh no longer truncates the error output. This ensures that important
|
|
13
|
+
troubleshooting information is not lost.
|
|
14
|
+
[#91](https://github.com/mattbrictson/airbrussh/issues/91)
|
|
15
|
+
|
|
9
16
|
## [1.1.0][] (2016-07-26)
|
|
10
17
|
|
|
11
18
|
* Use default color for info messages.
|
|
@@ -115,7 +122,8 @@ There are, however, many behind-the-scenes changes and improvements to overall c
|
|
|
115
122
|
* Initial release
|
|
116
123
|
|
|
117
124
|
[Semver]: http://semver.org
|
|
118
|
-
[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.
|
|
125
|
+
[Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.1...HEAD
|
|
126
|
+
[1.1.1]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...v1.1.1
|
|
119
127
|
[1.1.0]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...v1.1.0
|
|
120
128
|
[1.0.2]: https://github.com/mattbrictson/airbrussh/compare/v1.0.1...v1.0.2
|
|
121
129
|
[1.0.1]: https://github.com/mattbrictson/airbrussh/compare/v1.0.0...v1.0.1
|
data/Gemfile
CHANGED
|
@@ -36,3 +36,6 @@ gem "json", "~> 1.8" if RUBY_VERSION == "1.9.3"
|
|
|
36
36
|
|
|
37
37
|
# net-ssh 3.0+ is not compatible with Ruby 1.9, so pin at older version.
|
|
38
38
|
gem "net-ssh", "~> 2.8" if RUBY_VERSION == "1.9.3"
|
|
39
|
+
|
|
40
|
+
# tins 1.7.0+ is not compatible with Ruby 1.9, so pin at older version.
|
|
41
|
+
gem "tins", "~> 1.6.0" if RUBY_VERSION == "1.9.3"
|
|
@@ -71,7 +71,12 @@ module Airbrussh
|
|
|
71
71
|
end
|
|
72
72
|
|
|
73
73
|
def err_console
|
|
74
|
-
@err_console ||=
|
|
74
|
+
@err_console ||= begin
|
|
75
|
+
# Ensure we do not truncate the error output
|
|
76
|
+
err_config = config.dup
|
|
77
|
+
err_config.truncate = false
|
|
78
|
+
Airbrussh::Console.new(stderr, err_config)
|
|
79
|
+
end
|
|
75
80
|
end
|
|
76
81
|
|
|
77
82
|
def error_line(line="\n")
|
data/lib/airbrussh/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: airbrussh
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Matt Brictson
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2016-
|
|
11
|
+
date: 2016-09-09 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: sshkit
|