bootsetting 0.1.7 → 0.1.8
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/lib/bootsetting/version.rb +1 -1
- data/lib/bootsetting.rb +2 -0
- data/lib/duplicate_file_check.rb +5 -3
- 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: 6706e57c0afebac612659cae0aa4d1ea7b5584c2d63bbec7bfc97936f27ce47f
|
4
|
+
data.tar.gz: 837cb6353b916e780ff5d87bf78235fd7378ae55bd0c36c84e4995fcf289a7f4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b42ca269ad22cbf3514197436e75adabfa0a61036f1722250b7af7699edc9b16222980034e7d7a6b3692688d900c27535dc60ccf558b1b08dbba98d41fd920fc
|
7
|
+
data.tar.gz: bd2862ae9871b7e29a063f79bae0d2927a8634fc9923afe893aacb863bca4680ad60e11cd035483d4447fec72edb9f74e1d589e101df99ebcde99655a90c9c96
|
data/lib/bootsetting/version.rb
CHANGED
data/lib/bootsetting.rb
CHANGED
@@ -17,6 +17,8 @@ class CLI < Thor
|
|
17
17
|
# duplicate file check
|
18
18
|
desc "dfc", "duplicate file check by type && suffix"
|
19
19
|
def dfc(type, suffix)
|
20
|
+
super_dir = File.expand_path('../', __FILE__)
|
21
|
+
puts(super_dir)
|
20
22
|
puts "start to check ...".bright.red
|
21
23
|
puts "parames type: #{type} suffix: #{suffix}".blue
|
22
24
|
helper = FileCheckHelper.new()
|
data/lib/duplicate_file_check.rb
CHANGED
@@ -1,5 +1,5 @@
|
|
1
1
|
require 'FileUtils'
|
2
|
-
require 'digest/md5'
|
2
|
+
require 'digest/md5'
|
3
3
|
|
4
4
|
class FileCheckHelper
|
5
5
|
# desc "Copying files from acgn_ios_plugin to acgn_ios_plugin_pod folder"
|
@@ -12,6 +12,7 @@ class FileCheckHelper
|
|
12
12
|
def check(type, suffix)
|
13
13
|
# specify files which should not be copied
|
14
14
|
super_dir = File.expand_path('../', __FILE__)
|
15
|
+
puts "🐈 #{super_dir}"
|
15
16
|
fileNames = []
|
16
17
|
files = Dir[super_dir + "/**/*.{#{suffix}}"]
|
17
18
|
files.each do |old_dest|
|
@@ -19,12 +20,13 @@ class FileCheckHelper
|
|
19
20
|
end
|
20
21
|
fileMaps = Hash.new([])
|
21
22
|
files.each { |filePath|
|
23
|
+
puts "🌹check type: #{type} suffix: #{suffix}"
|
22
24
|
key = ""
|
23
25
|
if type == "md5"
|
24
|
-
puts "check type: #{type} suffix: #{suffix}"
|
26
|
+
puts "check type: #{type} suffix: #{suffix}"
|
25
27
|
key = md5 = Digest::MD5.hexdigest(File.read(filePath))
|
26
28
|
elsif type == "name"
|
27
|
-
puts "check type: #{type} suffix: #{suffix}"
|
29
|
+
puts "check type: #{type} suffix: #{suffix}"
|
28
30
|
key = File.basename(filePath)
|
29
31
|
end
|
30
32
|
fileArr = [] + fileMaps[key]
|