knuckle_cluster 2.3.3 → 2.3.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +11 -0
- data/lib/knuckle_cluster/configuration.rb +1 -1
- data/lib/knuckle_cluster/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c5a7377d7cc39d6948263bf53cb083177c47994ac9326850cf6892635618cd16
|
4
|
+
data.tar.gz: 37e1d8c19aba10233a69fae610fa272e1ae3211bf2cfe9d5f79e075c659676b2
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: afac0665c778de7a1c0c194d6409e4a08c6f37c841c7a7edb8f0d49c6e54cb432eb5225a2720cd16b8c02163158ed0fd93784b980b47d78bb8cf31ddfe51fc6f
|
7
|
+
data.tar.gz: 1ef9889813baadcbdd9bf3c4b502a160e3fafac4c9051ebaf2f7176772469a7f96c251455f99608a80cdb213726c2eae37c91eb7538f254a15131dc4bb4176f1
|
data/CHANGELOG.md
CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
|
|
5
5
|
The format is based on [Keep a Changelog](http://keepachangelog.com/)
|
6
6
|
and this project adheres to [Semantic Versioning](http://semver.org/).
|
7
7
|
|
8
|
+
## [Unreleased]
|
9
|
+
|
10
|
+
## [2.3.4] - 2023-03-06
|
11
|
+
|
12
|
+
### Fixed
|
13
|
+
|
14
|
+
* Fix the error caused by the removal of `File.exists?` in Ruby 3.2 ([#31](https://github.com/envato/knuckle_cluster/pull/31))
|
15
|
+
|
8
16
|
## [2.3.3] - 2020-05-11
|
9
17
|
|
10
18
|
### Fixed
|
@@ -18,3 +26,6 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
|
|
18
26
|
* Refactor SCP implementation to use new syntax
|
19
27
|
* Allow SCP copy files FROM agents or containers
|
20
28
|
|
29
|
+
[unreleased]: https://github.com/envato/knuckle_cluster/compare/v2.3.4...HEAD
|
30
|
+
[2.3.4]: https://github.com/envato/knuckle_cluster/compare/v2.3.2...v2.3.4
|
31
|
+
[2.3.3]: https://github.com/envato/knuckle_cluster/compare/v2.3.2...v2.3.3
|
@@ -34,7 +34,7 @@ class KnuckleCluster::Configuration
|
|
34
34
|
def self.load_data(profile_file = nil)
|
35
35
|
@data ||= (
|
36
36
|
profile_file ||= DEFAULT_PROFILE_FILE
|
37
|
-
raise "File #{profile_file} not found" unless File.
|
37
|
+
raise "File #{profile_file} not found" unless File.exist?(profile_file)
|
38
38
|
YAML.load_file(profile_file)
|
39
39
|
)
|
40
40
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: knuckle_cluster
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.3.
|
4
|
+
version: 2.3.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Envato
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2023-03-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: rake
|
@@ -160,7 +160,7 @@ homepage: https://github.com/envato/knuckle_cluster
|
|
160
160
|
licenses:
|
161
161
|
- MIT
|
162
162
|
metadata: {}
|
163
|
-
post_install_message:
|
163
|
+
post_install_message:
|
164
164
|
rdoc_options: []
|
165
165
|
require_paths:
|
166
166
|
- lib
|
@@ -175,8 +175,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
175
175
|
- !ruby/object:Gem::Version
|
176
176
|
version: '0'
|
177
177
|
requirements: []
|
178
|
-
rubygems_version: 3.
|
179
|
-
signing_key:
|
178
|
+
rubygems_version: 3.3.7
|
179
|
+
signing_key:
|
180
180
|
specification_version: 4
|
181
181
|
summary: Handy cluster tool
|
182
182
|
test_files: []
|