kanrisuru 0.12.0 → 0.12.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -1
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/helper/test_hosts.rb +2 -2
- data/spec/integration/remote/fstab_spec.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c96681bd051bc264f5433c668dee375c164232f3a417048789a5ae843118cebe
|
4
|
+
data.tar.gz: ba00a05d965d89c442e7d7c316899dd29fcfdfaa24ac44497fa7aa20eac359e3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b4cd7a7ff5f45ce2d498b16f4b7c65d87e961956fb7139034d908547b638fe8aa060f4dfa5c1bd6cacc05c2a250ab10f0c93126679cd2b628bf67020c17829fe
|
7
|
+
data.tar.gz: '01837cd7224fcb08a9497d3f60ebd00b71d62d5c47db81af976b39f4fdef87ed60e0abd07b3f6d39dacbdf089c0874dc75c8c3eebc94ce4468a3f1766f170ba2'
|
data/CHANGELOG.md
CHANGED
@@ -1,4 +1,8 @@
|
|
1
|
-
## Kanrisuru 0.12.
|
1
|
+
## Kanrisuru 0.12.1 (December 05, 2021) ##
|
2
|
+
* Fix typo in spec.
|
3
|
+
* Cleanup bad code style.
|
4
|
+
|
5
|
+
## Kanrisuru 0.12.0 (December 05, 2021) ##
|
2
6
|
* Add functional test cases for `mount` command.
|
3
7
|
* Fix typos and command preperation for `mount` command.
|
4
8
|
* Refactor `os_package` module into smaller modules for `Kanrisuru::OsPackage::Collection`, `Kanrisuru::OsPackage::Define`, and `Kanrisuru::OsPackage::Include`.
|
data/lib/kanrisuru/version.rb
CHANGED
data/spec/helper/test_hosts.rb
CHANGED
@@ -10,7 +10,7 @@ class TestHosts
|
|
10
10
|
next if opts[:only] && !only?(opts, os_name)
|
11
11
|
|
12
12
|
host_json = TestHosts.host(os_name)
|
13
|
-
spec_dir = spec_dir(
|
13
|
+
spec_dir = spec_dir(host_json)
|
14
14
|
|
15
15
|
block.call(os_name, host_json, spec_dir)
|
16
16
|
end
|
@@ -20,7 +20,7 @@ class TestHosts
|
|
20
20
|
hosts(name)
|
21
21
|
end
|
22
22
|
|
23
|
-
def spec_dir(
|
23
|
+
def spec_dir(host_json)
|
24
24
|
random_string = SecureRandom.hex
|
25
25
|
"#{host_json['home']}/.kanrisuru_spec_files_#{random_string[0..5]}"
|
26
26
|
end
|