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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1a3cee1b6c76b00b06e8e23c3399555a11b79879922ae8530e248d3df3791afa
4
- data.tar.gz: 0c92a5f046c126d67a32d2d3e0db0c6f8a1592a3c00a2fb47d6420907b67577c
3
+ metadata.gz: e743acb54faf873fcb0bd5f1003afa1692d649645a5a345fd9fddb0385bb0194
4
+ data.tar.gz: 706761428fa7369b38bda6f6016aafe430a453edc8f47e536a6a39cf0fd92755
5
5
  SHA512:
6
- metadata.gz: 55e79d04e82705e06bef6a66786d20823eb9feac91761763698e0eee0c6171fed31d4d9eb7b272a2bb4e861b70ab3dab6ba683436963472193c8c7603b2135be
7
- data.tar.gz: c3bb5519dcbcd02616fca9b350b64ab3cc58aa7165a352c9f61345fa5b5f8fe099f11da139023ca0c52a33db5e15cedb548bcf53e82354b548a8d57d646686d8
6
+ metadata.gz: 3d12c5006427bed155947304e1154fe6148ee3890af0bb7c759866f9ed7cbf55028d2862a433adfe4db2cf050b35739032fb4d35c15b06f51cbd3fb782239383
7
+ data.tar.gz: 43613cfeb3c609a93c8dd5157935e8f81dc3215a115379151f160e17484764b766dc901804b450da27a545ecd83b44fae0d8a0d5533d4a94ff9819da1341d813
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- bootsetting (0.2.0)
4
+ bootsetting (0.2.1)
5
5
  colored2
6
6
  rainbow
7
7
  thor
@@ -1,3 +1,3 @@
1
1
  module Bootsetting
2
- VERSION = "0.2.0"
2
+ VERSION = "0.2.1"
3
3
  end
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
- super_dir = File.expand_path('../', __FILE__)
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)
@@ -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
- end
52
+ end
53
+ puts "Successfully checking ...🍻🍻🍻🍻🍻...".green
42
54
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootsetting
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.2.0
4
+ version: 0.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - CNKCQ