kanrisuru 0.8.8 → 0.8.12
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/CHANGELOG.md +12 -0
- data/lib/kanrisuru/core/file.rb +23 -4
- data/lib/kanrisuru/mode.rb +1 -1
- data/lib/kanrisuru/version.rb +1 -1
- data/spec/functional/core/file_spec.rb +27 -2
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96b168459e76c64aa511a58fc43d0d777d5d783874e47a24c373dd6da2ef3ff4
|
|
4
|
+
data.tar.gz: 461c0236448253694f369cfc1b7757f61aeb0a4e0af3841cea62b6297d862c14
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4d8b47306256c698e30c7950fc18a59551fb156b14bc6e077df323a27832af8125f567213ec066ec1c8e5f7295411a0a113823ef4a6c97df0bbf5a6d753fc851
|
|
7
|
+
data.tar.gz: 5152a07e2d3580c4de9fb477d36c8de6f1d3fae3a6e234a6c3a80318524cb8ae6fefaebd984501f63b3b5de79350c2d9b53eac92b133453aebd1c47ba4323619
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## Kanrisuru 0.8.12 (October 3, 20201)
|
|
2
|
+
* Refactor `rmdir` command to only work on empty directories.
|
|
3
|
+
|
|
4
|
+
## Kanrisuru 0.8.11 (October 1, 20201)
|
|
5
|
+
* Allow `Kanrisuru::Mode` as mode type option in mkdir method.
|
|
6
|
+
|
|
7
|
+
## Kanrisuru 0.8.10 (August 24, 20201)
|
|
8
|
+
* Fix bug with rspec test case.
|
|
9
|
+
|
|
10
|
+
## Kanrisuru 0.8.9 (August 24, 2021)
|
|
11
|
+
* Fix spelling error exception `ArgumentError` in `Kanrisuru::Mode` class.
|
|
12
|
+
|
|
1
13
|
## Kanrisuru 0.8.8 (August 21, 2021) ##
|
|
2
14
|
* Add shorthand notation for tar command actions, such as `x` for `extract`, `t` for `list`, and `c` for `create`.
|
|
3
15
|
|
data/lib/kanrisuru/core/file.rb
CHANGED
|
@@ -206,10 +206,19 @@ module Kanrisuru
|
|
|
206
206
|
Kanrisuru::Result.new(command)
|
|
207
207
|
end
|
|
208
208
|
|
|
209
|
-
def rmdir(
|
|
210
|
-
|
|
209
|
+
def rmdir(paths, opts = {})
|
|
210
|
+
paths = [paths] if paths.instance_of?(String)
|
|
211
|
+
paths.each do |path|
|
|
212
|
+
raise ArgumentError, "Can't delete root path" if path == '/' || realpath(path).path == '/'
|
|
213
|
+
end
|
|
214
|
+
|
|
215
|
+
command = Kanrisuru::Command.new("rmdir #{paths.join(' ')}")
|
|
216
|
+
command.append_flag('--ignore-fail-on-non-empty', opts[:silent])
|
|
217
|
+
command.append_flag('--parents', opts[:parents])
|
|
218
|
+
|
|
219
|
+
execute_shell(command)
|
|
211
220
|
|
|
212
|
-
|
|
221
|
+
Kanrisuru::Result.new(command)
|
|
213
222
|
end
|
|
214
223
|
|
|
215
224
|
def mkdir(path, opts = {})
|
|
@@ -219,7 +228,17 @@ module Kanrisuru
|
|
|
219
228
|
|
|
220
229
|
command = Kanrisuru::Command.new("mkdir #{path}")
|
|
221
230
|
command.append_flag('-p', opts[:silent])
|
|
222
|
-
|
|
231
|
+
|
|
232
|
+
if Kanrisuru::Util.present?(opts[:mode])
|
|
233
|
+
mode = opts[:mode]
|
|
234
|
+
if mode.instance_of?(Kanrisuru::Mode)
|
|
235
|
+
mode = mode.numeric
|
|
236
|
+
elsif mode.instance_of?(String) && (mode.include?(',') || /[=+-]/.match(mode))
|
|
237
|
+
mode = Kanrisuru::Mode.new(mode).numeric
|
|
238
|
+
end
|
|
239
|
+
|
|
240
|
+
command.append_arg('-m', mode)
|
|
241
|
+
end
|
|
223
242
|
|
|
224
243
|
execute_shell(command)
|
|
225
244
|
|
data/lib/kanrisuru/mode.rb
CHANGED
|
@@ -235,7 +235,7 @@ module Kanrisuru
|
|
|
235
235
|
@group = Kanrisuru::Mode::Permission.new(symbolic_to_numeric(modes[3..5]), modes[3..5])
|
|
236
236
|
@other = Kanrisuru::Mode::Permission.new(symbolic_to_numeric(modes[6..8]), modes[6..8])
|
|
237
237
|
else
|
|
238
|
-
raise
|
|
238
|
+
raise ArgumentError, "Invalid format for mode #{string}"
|
|
239
239
|
end
|
|
240
240
|
end
|
|
241
241
|
|
data/lib/kanrisuru/version.rb
CHANGED
|
@@ -40,8 +40,8 @@ RSpec.describe Kanrisuru::Core::File do
|
|
|
40
40
|
keys: [host_json['ssh_key']]
|
|
41
41
|
)
|
|
42
42
|
|
|
43
|
-
host.
|
|
44
|
-
host.
|
|
43
|
+
host.rm("#{host_json['home']}/.kanrisuru_spec_files", force: true, recursive: true)
|
|
44
|
+
host.rm("#{host_json['home']}/extract-tar-files", force: true, recursive: true) if host.dir?("#{host_json['home']}/extract-tar-files")
|
|
45
45
|
host.disconnect
|
|
46
46
|
end
|
|
47
47
|
|
|
@@ -67,6 +67,10 @@ RSpec.describe Kanrisuru::Core::File do
|
|
|
67
67
|
mode = host.chmod(path, mode).mode
|
|
68
68
|
expect(mode.symbolic).to eq('-rwxr--r--')
|
|
69
69
|
expect(mode.to_i).to eq(0o744)
|
|
70
|
+
|
|
71
|
+
expect {
|
|
72
|
+
host.chmod(path, 600)
|
|
73
|
+
}.to raise_error(ArgumentError)
|
|
70
74
|
end
|
|
71
75
|
|
|
72
76
|
it 'changes file owner and group' do
|
|
@@ -318,6 +322,27 @@ RSpec.describe Kanrisuru::Core::File do
|
|
|
318
322
|
expect(host.empty_file?(path)).to eq(false)
|
|
319
323
|
end
|
|
320
324
|
|
|
325
|
+
it 'removes directories' do
|
|
326
|
+
result = host.mkdir("#{spec_dir}/directory/1", silent: true)
|
|
327
|
+
expect(result).to be_success
|
|
328
|
+
|
|
329
|
+
result = host.mkdir("#{spec_dir}/directory/2", silent: true)
|
|
330
|
+
expect(result).to be_success
|
|
331
|
+
|
|
332
|
+
result = host.mkdir("#{spec_dir}/directory/3", silent: true)
|
|
333
|
+
expect(result).to be_success
|
|
334
|
+
|
|
335
|
+
result = host.rmdir(["#{spec_dir}/directory/1", "#{spec_dir}/directory/2"])
|
|
336
|
+
expect(result).to be_success
|
|
337
|
+
|
|
338
|
+
## Can't delete non empty dir
|
|
339
|
+
result = host.rmdir("#{spec_dir}/directory")
|
|
340
|
+
expect(result).to be_failure
|
|
341
|
+
|
|
342
|
+
result = host.rmdir("#{spec_dir}/directory/3")
|
|
343
|
+
expect(result).to be_success
|
|
344
|
+
end
|
|
345
|
+
|
|
321
346
|
it 'counts a file' do
|
|
322
347
|
result = host.wc('/etc/hosts')
|
|
323
348
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: kanrisuru
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.8.
|
|
4
|
+
version: 0.8.12
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Ryan Mammina
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: rspec
|