airbrussh 1.0.2 → 1.1.0

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: 58dc91f927b5a666da9937a9b2645aeedb63dda0
4
- data.tar.gz: c11b7735895deeecf2033856e9ce908850f21031
3
+ metadata.gz: 7827151321ce3dafe62f938ccb562517bcebd833
4
+ data.tar.gz: 75849ef0906db4699d60f8189112787c2b939e6b
5
5
  SHA512:
6
- metadata.gz: 91dd2ec74fbf99452f8a81e54dae332add830e11d71b76c536f08a35298e9eb7d1f54724f8705686f35ca29bbf0b90e6a2d382a70954e9420c897b43c706c363
7
- data.tar.gz: 0b6938a668435f82acd1b37f5a5f75a63ffffcf8de9577357a02a06b0d03db42059f33c10c7a071e25f7cde5892845286f8519bd878d2801d3afedb33dbd0e48
6
+ metadata.gz: aef17d5ffe2c539db15d343b956087774725b6c933c1dce757cb47c54d96b1af57ce076708be234a0e62460f7bf2c05c1e7145921cea0753e5ea16071723a66a
7
+ data.tar.gz: af62ba068c71c002b4f6e02e61ae4a874a85582009d33d2a5ba8f899fec289b9ff16080af58a576f5e9f9d4c3a7bc49cd8b641e27e7c3179fda651acd25c15a8
data/CHANGELOG.md CHANGED
@@ -6,6 +6,15 @@ 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.0][] (2016-07-26)
10
+
11
+ * Use default color for info messages.
12
+ When using the `gray` color on some implementation of the `solarized`
13
+ theme the text is not visible. The `solarized` theme is popular and
14
+ bugs have been reported about missed error messages, so this patch
15
+ switches these messages to the default color.
16
+ (see [#84](https://github.com/mattbrictson/airbrussh/issues/84))
17
+
9
18
  ## [1.0.2][] (2016-05-13)
10
19
 
11
20
  * Fix a crash that can happen in certain multi-server deployments when
@@ -106,7 +115,8 @@ There are, however, many behind-the-scenes changes and improvements to overall c
106
115
  * Initial release
107
116
 
108
117
  [Semver]: http://semver.org
109
- [Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...HEAD
118
+ [Unreleased]: https://github.com/mattbrictson/airbrussh/compare/v1.1.0...HEAD
119
+ [1.1.0]: https://github.com/mattbrictson/airbrussh/compare/v1.0.2...v1.1.0
110
120
  [1.0.2]: https://github.com/mattbrictson/airbrussh/compare/v1.0.1...v1.0.2
111
121
  [1.0.1]: https://github.com/mattbrictson/airbrussh/compare/v1.0.0...v1.0.1
112
122
  [1.0.0]: https://github.com/mattbrictson/airbrussh/compare/v1.0.0.beta1...v1.0.0
data/Gemfile CHANGED
@@ -31,5 +31,8 @@ if (sshkit_version = ENV["sshkit"])
31
31
  gem "sshkit", requirement
32
32
  end
33
33
 
34
+ # json 2.0+ is not compatible with Ruby 1.9, so pin at older version.
35
+ gem "json", "~> 1.8" if RUBY_VERSION == "1.9.3"
36
+
34
37
  # net-ssh 3.0+ is not compatible with Ruby 1.9, so pin at older version.
35
38
  gem "net-ssh", "~> 2.8" if RUBY_VERSION == "1.9.3"
data/airbrussh.gemspec CHANGED
@@ -29,5 +29,5 @@ Gem::Specification.new do |spec|
29
29
  spec.add_development_dependency "minitest"
30
30
  spec.add_development_dependency "minitest-reporters"
31
31
  spec.add_development_dependency "mocha"
32
- spec.add_development_dependency "rubocop", ">= 0.37.0"
32
+ spec.add_development_dependency "rubocop", "~> 0.41.2"
33
33
  end
@@ -52,7 +52,7 @@ module Airbrussh
52
52
  else
53
53
  green(success_message)
54
54
  end
55
- message << " #{gray(runtime)}"
55
+ message << " #{runtime}"
56
56
  end
57
57
 
58
58
  private
@@ -69,7 +69,7 @@ module Airbrussh
69
69
  def write_log_message(log_message)
70
70
  return if debug?(log_message)
71
71
  print_task_if_changed
72
- print_indented_line(gray(log_message.to_s))
72
+ print_indented_line(log_message.to_s)
73
73
  end
74
74
 
75
75
  # For SSHKit versions up to and including 1.7.1, the stdout and stderr
@@ -1,4 +1,4 @@
1
1
  # frozen_string_literal: true
2
2
  module Airbrussh
3
- VERSION = "1.0.2".freeze
3
+ VERSION = "1.1.0".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.0.2
4
+ version: 1.1.0
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-05-13 00:00:00.000000000 Z
11
+ date: 2016-07-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sshkit
@@ -118,16 +118,16 @@ dependencies:
118
118
  name: rubocop
119
119
  requirement: !ruby/object:Gem::Requirement
120
120
  requirements:
121
- - - ">="
121
+ - - "~>"
122
122
  - !ruby/object:Gem::Version
123
- version: 0.37.0
123
+ version: 0.41.2
124
124
  type: :development
125
125
  prerelease: false
126
126
  version_requirements: !ruby/object:Gem::Requirement
127
127
  requirements:
128
- - - ">="
128
+ - - "~>"
129
129
  - !ruby/object:Gem::Version
130
- version: 0.37.0
130
+ version: 0.41.2
131
131
  description: A replacement log formatter for SSHKit that makes Capistrano output much
132
132
  easier on the eyes. Just add Airbrussh to your Capfile and enjoy concise, useful
133
133
  log output that is easy to read.
@@ -190,7 +190,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
190
190
  version: '0'
191
191
  requirements: []
192
192
  rubyforge_project:
193
- rubygems_version: 2.6.4
193
+ rubygems_version: 2.6.6
194
194
  signing_key:
195
195
  specification_version: 4
196
196
  summary: Airbrussh pretties up your SSHKit and Capistrano output