airbrussh 1.4.1 → 1.4.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.circleci/config.yml +6 -3
- data/Gemfile +10 -2
- data/airbrussh.gemspec +1 -1
- data/appveyor.yml +2 -0
- data/lib/airbrussh/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 55fc294193f64fff819d6fd61aa25cb2ae77ed3bb6e11e9b169c6b5a8b48c377
|
4
|
+
data.tar.gz: cda1c291c971329be31c3fa0d5695ba0511c4afc6340cf96c09d157a5c565f4c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e08e903fec21622038b99666116f62bf08f030a7c0d2e42f71b7184a41e87669ddbb894c7180668cc6e0beefa50deabdf91f6a28565bc1208762e668cb7db3ef
|
7
|
+
data.tar.gz: 558cc51bf180d31d8fcf1a9e38f33030f0bff56688826d0b14ae0b295a44c3d0984d7aebb61edaf59455d74ed7398674019ec79b976cf5bff12edb900fcc7c3f
|
data/.circleci/config.yml
CHANGED
@@ -5,10 +5,12 @@ executors:
|
|
5
5
|
parameters:
|
6
6
|
version:
|
7
7
|
description: "Ruby version number"
|
8
|
-
default: "3.
|
8
|
+
default: "3.2"
|
9
9
|
type: string
|
10
10
|
docker:
|
11
11
|
- image: ruby:<< parameters.version >>
|
12
|
+
environment:
|
13
|
+
MT_COMPAT: "1" # Allows old versions of mocha gem to work with minitest
|
12
14
|
|
13
15
|
commands:
|
14
16
|
bundle_install:
|
@@ -16,7 +18,7 @@ commands:
|
|
16
18
|
parameters:
|
17
19
|
key:
|
18
20
|
description: "Cache key"
|
19
|
-
default: "3.
|
21
|
+
default: "3.2"
|
20
22
|
type: string
|
21
23
|
steps:
|
22
24
|
- restore_cache:
|
@@ -48,7 +50,7 @@ jobs:
|
|
48
50
|
parameters:
|
49
51
|
ruby:
|
50
52
|
description: "Ruby version number"
|
51
|
-
default: "3.
|
53
|
+
default: "3.2"
|
52
54
|
type: string
|
53
55
|
executor:
|
54
56
|
name: ruby
|
@@ -98,6 +100,7 @@ workflows:
|
|
98
100
|
- "2.7"
|
99
101
|
- "3.0"
|
100
102
|
- "3.1"
|
103
|
+
- "3.2"
|
101
104
|
- spec_legacy_ruby:
|
102
105
|
matrix: &legacy_ruby_matrix
|
103
106
|
parameters:
|
data/Gemfile
CHANGED
@@ -7,10 +7,15 @@ if RUBY_VERSION == "1.9.3"
|
|
7
7
|
# These gems need specific version for Ruby 1.9
|
8
8
|
gem "json", "~> 1.8"
|
9
9
|
gem "minitest", "~> 5.11.3"
|
10
|
+
gem "mocha", "~> 1.2"
|
10
11
|
gem "net-ssh", "~> 2.8"
|
11
12
|
gem "rake", "< 12.3"
|
12
13
|
gem "term-ansicolor", "~> 1.3.2"
|
13
14
|
gem "tins", "~> 1.6.0"
|
15
|
+
elsif RUBY_VERSION < "2.6"
|
16
|
+
# These gems need specific versions for Ruby < 2.6
|
17
|
+
gem "minitest", "< 5.16" # rubocop:disable Bundler/DuplicatedGem
|
18
|
+
gem "net-ssh", "< 7" # rubocop:disable Bundler/DuplicatedGem
|
14
19
|
end
|
15
20
|
|
16
21
|
if RUBY_VERSION >= "2.5"
|
@@ -18,8 +23,8 @@ if RUBY_VERSION >= "2.5"
|
|
18
23
|
gem "coveralls_reborn", "~> 0.24.0"
|
19
24
|
end
|
20
25
|
|
21
|
-
if RUBY_VERSION >= "2.
|
22
|
-
# These gems need at least Ruby 2.
|
26
|
+
if RUBY_VERSION >= "2.5"
|
27
|
+
# These gems need at least Ruby 2.5
|
23
28
|
gem "rubocop", "0.50.0"
|
24
29
|
|
25
30
|
# Optional development dependencies; requires bundler >= 1.10.
|
@@ -35,6 +40,9 @@ if RUBY_VERSION >= "2.1"
|
|
35
40
|
end
|
36
41
|
end
|
37
42
|
|
43
|
+
# Needed to make rubocop 0.50.0 work on modern rubies
|
44
|
+
gem "safe_yaml" if RUBY_VERSION >= "3.1"
|
45
|
+
|
38
46
|
if (sshkit_version = ENV["sshkit"])
|
39
47
|
requirement = begin
|
40
48
|
Gem::Dependency.new("sshkit", sshkit_version).requirement
|
data/airbrussh.gemspec
CHANGED
@@ -33,5 +33,5 @@ Gem::Specification.new do |spec|
|
|
33
33
|
spec.add_development_dependency "rake", "~> 12.0"
|
34
34
|
spec.add_development_dependency "minitest", "~> 5.10"
|
35
35
|
spec.add_development_dependency "minitest-reporters", "~> 1.1"
|
36
|
-
spec.add_development_dependency "mocha", "~> 1
|
36
|
+
spec.add_development_dependency "mocha", "~> 2.1"
|
37
37
|
end
|
data/appveyor.yml
CHANGED
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.4.
|
4
|
+
version: 1.4.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Brictson
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-08-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sshkit
|
@@ -92,14 +92,14 @@ dependencies:
|
|
92
92
|
requirements:
|
93
93
|
- - "~>"
|
94
94
|
- !ruby/object:Gem::Version
|
95
|
-
version: '1
|
95
|
+
version: '2.1'
|
96
96
|
type: :development
|
97
97
|
prerelease: false
|
98
98
|
version_requirements: !ruby/object:Gem::Requirement
|
99
99
|
requirements:
|
100
100
|
- - "~>"
|
101
101
|
- !ruby/object:Gem::Version
|
102
|
-
version: '1
|
102
|
+
version: '2.1'
|
103
103
|
description: A replacement log formatter for SSHKit that makes Capistrano output much
|
104
104
|
easier on the eyes. Just add Airbrussh to your Capfile and enjoy concise, useful
|
105
105
|
log output that is easy to read.
|
@@ -164,7 +164,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
164
164
|
- !ruby/object:Gem::Version
|
165
165
|
version: '0'
|
166
166
|
requirements: []
|
167
|
-
rubygems_version: 3.
|
167
|
+
rubygems_version: 3.2.33
|
168
168
|
signing_key:
|
169
169
|
specification_version: 4
|
170
170
|
summary: Airbrussh pretties up your SSHKit and Capistrano output
|