airbrussh 1.1.0 → 1.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7827151321ce3dafe62f938ccb562517bcebd833
4
- data.tar.gz: 75849ef0906db4699d60f8189112787c2b939e6b
3
+ metadata.gz: ff27fd1a5c3e6ace07ffc6a54deda2005d02f64c
4
+ data.tar.gz: 743213b31a1fe768fd1714c39a6ce1c79061810e
5
5
  SHA512:
6
- metadata.gz: aef17d5ffe2c539db15d343b956087774725b6c933c1dce757cb47c54d96b1af57ce076708be234a0e62460f7bf2c05c1e7145921cea0753e5ea16071723a66a
7
- data.tar.gz: af62ba068c71c002b4f6e02e61ae4a874a85582009d33d2a5ba8f899fec289b9ff16080af58a576f5e9f9d4c3a7bc49cd8b641e27e7c3179fda651acd25c15a8
6
+ metadata.gz: 92a73a5f3aed59273f10e20ded922862565a15ca967f4a65774653313a5ed6b82697a918db31afef12643867337dd18b0a8f61b2703fdd4d832faad8d2fa89fe
7
+ data.tar.gz: df0d147e5c9e99b7af580541cfc407adc500be6d21c7d218defa0a1a042075db92298891e5a92b860a2f4909637357e7c4ccad0a8b1bce2c34002d68287bc738
@@ -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.0...HEAD
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 ||= Airbrussh::Console.new(stderr)
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")
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Airbrussh
3
- VERSION = "1.1.0".freeze
3
+ VERSION = "1.1.1".freeze
4
4
  end
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.0
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-07-26 00:00:00.000000000 Z
11
+ date: 2016-09-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sshkit