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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 90a770892347e6c5793335804e9355122b7bc2316c495dd6ef1b4eb2dc94ec8e
4
- data.tar.gz: 3ccca2e9caf7b8f9bb29a0ce980675f990bcb884432f848f3d52d4f815bf8567
3
+ metadata.gz: 6706e57c0afebac612659cae0aa4d1ea7b5584c2d63bbec7bfc97936f27ce47f
4
+ data.tar.gz: 837cb6353b916e780ff5d87bf78235fd7378ae55bd0c36c84e4995fcf289a7f4
5
5
  SHA512:
6
- metadata.gz: c01b3c08c8e173120d4af1151bf2148bcce9d5a6f11dea11906967710c8a237f9f259cb43b1efbb8b148ecac44c96ef68ef71e2f3389b826e8fd8b58c9221156
7
- data.tar.gz: 9c188e20aa523d182294b91f7e39925e99573ace9d34d53346fa92adff0c3091f37d655af3951decff5c52313192a28c967d2b2baa47d7115208e73d0e75978a
6
+ metadata.gz: b42ca269ad22cbf3514197436e75adabfa0a61036f1722250b7af7699edc9b16222980034e7d7a6b3692688d900c27535dc60ccf558b1b08dbba98d41fd920fc
7
+ data.tar.gz: bd2862ae9871b7e29a063f79bae0d2927a8634fc9923afe893aacb863bca4680ad60e11cd035483d4447fec72edb9f74e1d589e101df99ebcde99655a90c9c96
@@ -1,3 +1,3 @@
1
1
  module Bootsetting
2
- VERSION = "0.1.7"
2
+ VERSION = "0.1.8"
3
3
  end
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()
@@ -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}".blue
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}".green
29
+ puts "check type: #{type} suffix: #{suffix}"
28
30
  key = File.basename(filePath)
29
31
  end
30
32
  fileArr = [] + fileMaps[key]
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.1.7
4
+ version: 0.1.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - CNKCQ