-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathstdtools.rb
71 lines (41 loc) · 1.58 KB
/
stdtools.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# encoding: utf-8
require 'json'
public
def any_labelling_shift(json)
shapes = json['shapes']
shapes.each do |pointlist|
points_arr = pointlist['points']
points_arr.each do |obj|
obj = obj.map! {|n| n + 1}
end
end
end
def dir_the_folder # метод для выбора файла, который нужно будет обрабатывать
puts "Скопируйте путь к рабочей папке"
work_folder = gets.chomp
puts "Введите нужное расширение файлов"
file_extension = gets.chomp.prepend(".")
Dir.chdir(work_folder)
filelist_array = Dir.entries(".").select {|f| File.file?(f) && File.extname(f) == file_extension}
filelist_hash = {}
filelist_array.sort.each_with_index { |str, i| filelist_hash[i+1] = str }
puts "Выберите файл для работы, указав его номер в списке"
filelist_hash.each do |key, value|
puts "#{key}. #{value}"
end
filenumber = gets.chomp.to_i
workfile = filelist_hash[filenumber]
return workfile
end
# PasswordsStack - класс для генерации паролей трёх типов.
class PasswordsStack
def generate_password_long
[1,2,3,4,5,6,7,8,9,'q','w','r','t','i','s','d','f','g','h','j','z','v','b','m'].sample(10).map(&:to_s).join
end
def generate_password_short
((1..9).to_a.sample(1) + (0..9).to_a.sample(6)).map(&:to_s).join
end
def generate_password_archive
((1..9).to_a.sample(1) + (0..9).to_a.sample(7)).map(&:to_s).join
end
end