kanrisuru 0.12.0 → 0.12.1

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: f1401e8534eead10f860fbe8c4bd90397571d391ff4581c74d8ae427e4c32afa
4
- data.tar.gz: bbba84a50446bc323ff21980c65ef1a0ff14dc316b8f731da0ee55c914ea2160
3
+ metadata.gz: c96681bd051bc264f5433c668dee375c164232f3a417048789a5ae843118cebe
4
+ data.tar.gz: ba00a05d965d89c442e7d7c316899dd29fcfdfaa24ac44497fa7aa20eac359e3
5
5
  SHA512:
6
- metadata.gz: 3f89283777add5671cbb00d7294c204911aa8591a00582c11c560df1091be1cb459afe94450d468b2f85c17df3883805fb1776b2f49ef85846bbc2664c49a10e
7
- data.tar.gz: 653788aa5d5f84a4290b7462437ce1cdc42be954b834c0c2398a7704ac8b3b0346718fbb0b423ad1770579960c8b3a371c6f6fc4b5688dabb75c175e55ea26d3
6
+ metadata.gz: b4cd7a7ff5f45ce2d498b16f4b7c65d87e961956fb7139034d908547b638fe8aa060f4dfa5c1bd6cacc05c2a250ab10f0c93126679cd2b628bf67020c17829fe
7
+ data.tar.gz: '01837cd7224fcb08a9497d3f60ebd00b71d62d5c47db81af976b39f4fdef87ed60e0abd07b3f6d39dacbdf089c0874dc75c8c3eebc94ce4468a3f1766f170ba2'
data/CHANGELOG.md CHANGED
@@ -1,4 +1,8 @@
1
- ## Kanrisuru 0.12.0 (December 05, 20201) ##
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`.
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Kanrisuru
4
- VERSION = '0.12.0'
4
+ VERSION = '0.12.1'
5
5
  end
@@ -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(os_name, host_json)
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(os_name, host_json)
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
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- TestHosts.each_os do |os_name. host_json|
3
+ TestHosts.each_os do |os_name, host_json|
4
4
  RSpec.describe Kanrisuru::Remote::Fstab do
5
5
  context "with #{os_name}" do
6
6
  let(:host) do
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kanrisuru
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.12.0
4
+ version: 0.12.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ryan Mammina