bootsetting 0.2.0 → 0.2.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 +4 -4
- data/Gemfile.lock +1 -1
- data/lib/bootsetting/version.rb +1 -1
- data/lib/bootsetting.rb +1 -3
- data/lib/duplicate_file_check.rb +15 -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: e743acb54faf873fcb0bd5f1003afa1692d649645a5a345fd9fddb0385bb0194
|
4
|
+
data.tar.gz: 706761428fa7369b38bda6f6016aafe430a453edc8f47e536a6a39cf0fd92755
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3d12c5006427bed155947304e1154fe6148ee3890af0bb7c759866f9ed7cbf55028d2862a433adfe4db2cf050b35739032fb4d35c15b06f51cbd3fb782239383
|
7
|
+
data.tar.gz: 43613cfeb3c609a93c8dd5157935e8f81dc3215a115379151f160e17484764b766dc901804b450da27a545ecd83b44fae0d8a0d5533d4a94ff9819da1341d813
|
data/Gemfile.lock
CHANGED
data/lib/bootsetting/version.rb
CHANGED
data/lib/bootsetting.rb
CHANGED
@@ -17,9 +17,7 @@ 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
|
-
|
21
|
-
puts(super_dir)
|
22
|
-
puts "start to check ...".bright.red
|
20
|
+
puts "start to check ......".green
|
23
21
|
puts "parames type: #{type} suffix: #{suffix}".blue
|
24
22
|
helper = FileCheckHelper.new()
|
25
23
|
helper.check(type, suffix)
|
data/lib/duplicate_file_check.rb
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
require 'FileUtils'
|
2
2
|
require 'digest/md5'
|
3
|
+
require 'rainbow/refinement'
|
4
|
+
|
5
|
+
using Rainbow
|
6
|
+
|
7
|
+
# puts "hello cyan".cyan
|
8
|
+
# puts "hello red".red
|
9
|
+
# puts "hello green".green
|
10
|
+
# puts "hello yellow".yellow
|
11
|
+
# puts "hello blue".blue
|
12
|
+
# puts "hello magenta".magenta
|
13
|
+
# puts "hello brown".brown
|
14
|
+
# puts "hello blanchedalmond".blanchedalmond
|
3
15
|
|
4
16
|
class FileCheckHelper
|
5
17
|
# desc "Copying files from acgn_ios_plugin to acgn_ios_plugin_pod folder"
|
@@ -12,7 +24,6 @@ class FileCheckHelper
|
|
12
24
|
def check(type, suffix)
|
13
25
|
# specify files which should not be copied
|
14
26
|
current_dir = Dir.pwd
|
15
|
-
puts "🐈 #{current_dir}"
|
16
27
|
fileNames = []
|
17
28
|
files = Dir[current_dir + "/**/*.{#{suffix}}"]
|
18
29
|
files.each do |old_dest|
|
@@ -31,12 +42,13 @@ class FileCheckHelper
|
|
31
42
|
}
|
32
43
|
fileMaps.each {|key, value|
|
33
44
|
if value.count > 1
|
34
|
-
puts "#{key} repeat count: #{value.count}"
|
45
|
+
puts "#{key} repeat count: #{value.count}".yellow
|
35
46
|
fileArr = [] + value
|
36
47
|
fileArr.each { |filePath|
|
37
48
|
puts "#{filePath}"
|
38
49
|
}
|
39
50
|
end
|
40
51
|
}
|
41
|
-
|
52
|
+
end
|
53
|
+
puts "Successfully checking ...🍻🍻🍻🍻🍻...".green
|
42
54
|
end
|