kitchen-transport-express 1.0.0 → 1.0.2
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/.github/workflows/ruby.yml +1 -1
- data/CHANGELOG.md +10 -0
- data/README.md +2 -0
- data/kitchen-transport-express.gemspec +1 -0
- data/lib/kitchen/transport/express/version.rb +1 -1
- data/lib/kitchen/transport/express_ssh.rb +4 -4
- metadata +4 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 06260247f476f570cc2f5688cc28de04339b3a2de0f1f0583b1e65a0f9a80674
|
4
|
+
data.tar.gz: 4328717c393b6c5547146330652a207b5a9a9f635726e7b06fe088614f4ff717
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 848510e4f1946be60b406eaec3b0849a3817ca7d27bed2e48f524183c01a8c88b91de7dcb0697fb1080a55e3120d3c079ab8cc3417cd1e8a1fdb3af97d455765
|
7
|
+
data.tar.gz: 21687192b8c79d0b62a2e199dfb00d75ce5bcaddffe9fe0ece8d6a8308eb3aa041dbcba31c82daeea54016e0ac8a0ca8438b072ccc526acd6e34cbda064718cb
|
data/.github/workflows/ruby.yml
CHANGED
data/CHANGELOG.md
ADDED
data/README.md
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
# Kitchen::Transport::Express
|
2
2
|
|
3
|
+
[](https://badge.fury.io/rb/kitchen-transport-express)
|
4
|
+
|
3
5
|
`kitchen-transport-express` is a plugin for `Kitchen::Transport` that is designed to dramatically improve the time to converge nodes over SSH. This gem was inspired by projects
|
4
6
|
like [kitchen-transport-speedy](https://github.com/criteo/kitchen-transport-speedy) and [kitchen-sync](https://github.com/coderanger/kitchen-sync).
|
5
7
|
|
@@ -27,6 +27,7 @@ Gem::Specification.new do |spec|
|
|
27
27
|
spec.description = %q{A Test Kitchen Transport plugin that streamlines the file transfer phase to Linux hosts.}
|
28
28
|
spec.files = `git ls-files -z`.split("\x0").reject { |f| f.match(%r{^(test|spec|features)/}) }
|
29
29
|
spec.homepage = "https://github.com/justintsteele/kitchen-transport-express.git"
|
30
|
+
spec.metadata["github_repo"] = "https://github.com/justintsteele/kitchen-transport-express"
|
30
31
|
spec.license = "Apache-2.0"
|
31
32
|
spec.require_paths = ["lib"]
|
32
33
|
spec.add_dependency "test-kitchen"
|
@@ -41,11 +41,11 @@ module Kitchen
|
|
41
41
|
end
|
42
42
|
|
43
43
|
def finalize_config!(instance)
|
44
|
-
return unless verifier_defined?(instance)
|
45
|
-
|
46
44
|
super.tap do
|
47
|
-
instance
|
48
|
-
|
45
|
+
if verifier_defined?(instance)
|
46
|
+
instance.verifier.send(:define_singleton_method, :runner_options_for_expressssh) do |config_data|
|
47
|
+
runner_options_for_ssh(config_data)
|
48
|
+
end
|
49
49
|
end
|
50
50
|
end
|
51
51
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: kitchen-transport-express
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.0.
|
4
|
+
version: 1.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Justin Steele
|
@@ -91,6 +91,7 @@ files:
|
|
91
91
|
- ".github/workflows/ruby.yml"
|
92
92
|
- ".gitignore"
|
93
93
|
- ".rubocop.yml"
|
94
|
+
- CHANGELOG.md
|
94
95
|
- Gemfile
|
95
96
|
- LICENSE
|
96
97
|
- README.md
|
@@ -102,7 +103,8 @@ files:
|
|
102
103
|
homepage: https://github.com/justintsteele/kitchen-transport-express.git
|
103
104
|
licenses:
|
104
105
|
- Apache-2.0
|
105
|
-
metadata:
|
106
|
+
metadata:
|
107
|
+
github_repo: https://github.com/justintsteele/kitchen-transport-express
|
106
108
|
post_install_message:
|
107
109
|
rdoc_options: []
|
108
110
|
require_paths:
|