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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7eaabe4263ef01558a60d4e50ded08beb48bfa5ffae332ed529e37c766e829dd
4
- data.tar.gz: e9f4c574a1feacffd6a25267e4e347c1003f93f8cc24714afd0d9ea849790e4d
3
+ metadata.gz: 06260247f476f570cc2f5688cc28de04339b3a2de0f1f0583b1e65a0f9a80674
4
+ data.tar.gz: 4328717c393b6c5547146330652a207b5a9a9f635726e7b06fe088614f4ff717
5
5
  SHA512:
6
- metadata.gz: 18efa1a554ee66e71f00ad612755cc1a214cc84cc496b486d437a4d617659e403fe79c3228188a8e9544e32b78170dc807174d265f9cb01da67e385270fb2e1f
7
- data.tar.gz: b090fb3c75e893596947f406b9425b10f30288b86f81c4f918516838fed9890082ca5227e2cb428dd205a35df45f66ba09d827727eab75f1013c2a2e30e2d562
6
+ metadata.gz: 848510e4f1946be60b406eaec3b0849a3817ca7d27bed2e48f524183c01a8c88b91de7dcb0697fb1080a55e3120d3c079ab8cc3417cd1e8a1fdb3af97d455765
7
+ data.tar.gz: 21687192b8c79d0b62a2e199dfb00d75ce5bcaddffe9fe0ece8d6a8308eb3aa041dbcba31c82daeea54016e0ac8a0ca8438b072ccc526acd6e34cbda064718cb
@@ -9,7 +9,7 @@ name: Ruby
9
9
 
10
10
  on:
11
11
  pull_request:
12
- branches: [ "master" ]
12
+ branches: [ "main" ]
13
13
 
14
14
  permissions:
15
15
  contents: read
data/CHANGELOG.md ADDED
@@ -0,0 +1,10 @@
1
+ # kitchen-transport-express CHANGELOG
2
+
3
+ ## 1.0.2
4
+ * fix: 🐛 ensure finalize_config gets called
5
+
6
+ ## 1.0.1
7
+ * chore: 📝 add github_url to gemspec
8
+
9
+ ## 1.0.0
10
+ * feat: 🎉 initial release
data/README.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Kitchen::Transport::Express
2
2
 
3
+ [![Gem Version](https://badge.fury.io/rb/kitchen-transport-express.svg)](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"
@@ -17,7 +17,7 @@
17
17
  module Kitchen
18
18
  module Transport
19
19
  class Express
20
- VERSION = "1.0.0"
20
+ VERSION = "1.0.2"
21
21
  end
22
22
  end
23
23
  end
@@ -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.verifier.send(:define_singleton_method, :runner_options_for_expressssh) do |config_data|
48
- runner_options_for_ssh(config_data)
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.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: