cocoapods-aomi-bin 0.1.7 → 0.1.12

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: daeba67369d05792796bf13709af702f4ed8937c74f4a66755fc02160a4cc8e9
4
- data.tar.gz: 1f4db6b1b3609a580b14da4b6d548ec17b4fc8d16d06e1ae85f199695c65f088
3
+ metadata.gz: 9cfcbfeeae134c9aacd50c954533008ba3236e50fcafe6e15bfef70e4bbc3973
4
+ data.tar.gz: 864e6bc1e2a0f42ccff3794f19947cedbd4f8bde8115162f776e0017d4576ef1
5
5
  SHA512:
6
- metadata.gz: d96eb617e47fa8bf0e399d610d8aab68a30b21fac029168a2c4839b4ae3570b839f4f71a1e518a954bff1cb822c635ec1c47d052fad147daa8e9e423930ed5c5
7
- data.tar.gz: 94e010fbd073a784cf9a4be53e961dc922b201cd51d69bb35221c301d782b9da500902df86b4f8b0e3d3d4e29f4bbafeefaa20dc689f6e2f8923ec7bc3b28a3f
6
+ metadata.gz: 755402a04f78ef6a944739939c8ae4a193a255bbef817f2556e61a19659fb3b7e70d59ed5f50f79ccf4aa60f7c5f851b59bf0ed8494fc0b98b695958f211f28f
7
+ data.tar.gz: 174b6b7804b20c4a76d5805357e28a98360c4ff0d626cab0089b28f3252ecb62990aa3a736b23226983c775562ecb90ed58b7ac1c064f5aa2d130d27cfe8263b
@@ -8,6 +8,8 @@ require 'cocoapods-lhj-bin/command/bin/install'
8
8
  require 'cocoapods-lhj-bin/command/bin/import'
9
9
  require 'cocoapods-lhj-bin/command/bin/local/local'
10
10
  require 'cocoapods-lhj-bin/command/bin/local/fetch'
11
+ require 'cocoapods-lhj-bin/command/bin/local/filter'
12
+ require 'cocoapods-lhj-bin/command/bin/local/micro_service'
11
13
  require 'cocoapods-lhj-bin/command/bin/local/upload'
12
14
  require 'cocoapods-lhj-bin/command/bin/trans'
13
15
  require 'cocoapods-lhj-bin/command/bin/lhj'
@@ -35,9 +35,13 @@ module Pod
35
35
  require 'open-uri'
36
36
 
37
37
  UI.puts "开始下载配置文件...\n"
38
- file = open(url)
39
- contents = YAML.safe_load(file.read)
40
-
38
+ str = ''
39
+ URI.open(url) do |f|
40
+ f.each_line do |line|
41
+ str += line
42
+ end
43
+ end
44
+ contents = YAML.safe_load(str)
41
45
  UI.puts "开始同步配置文件...\n"
42
46
  CBin.config.sync_config(contents.to_hash)
43
47
  UI.puts "设置完成.\n".green
@@ -20,12 +20,14 @@ module Pod
20
20
  @file_type = argv.option('file-type', 'm,h')
21
21
  @file_name = argv.option('file-name', 'gen_cn_key.csv')
22
22
  @cn_keys = []
23
+ @key_map = {}
23
24
  super
24
25
  end
25
26
 
26
27
  def run
27
28
  handle_files
28
29
  gen_csv
30
+ # update_source_header
29
31
  end
30
32
 
31
33
  def csv_file_name
@@ -38,9 +40,9 @@ module Pod
38
40
  file = File.join(@current_path, csv_file_name)
39
41
  FileUtils.rm_rf(file) if File.exist?(file)
40
42
  CSV.open(file, 'wb:utf-8') do |csv|
41
- csv << %w[国际化key 中文 英文 原字符 所在文件 文件路径]
43
+ csv << %w[国际化key 中文 英文 所在文件 文件路径]
42
44
  @cn_keys.each do |k|
43
- csv << [k[:key], k[:cn], k[:en], k[:str], k[:fname], k[:dirname]]
45
+ csv << [k[:key], k[:cn], k[:en], k[:fname], k[:dirname]]
44
46
  end
45
47
  end
46
48
  UI.puts "生成csv文件完成.\n文件路径:#{File.absolute_path(file)}".green
@@ -48,7 +50,13 @@ module Pod
48
50
 
49
51
  def handle_files
50
52
  Dir.glob("#{@current_path}/**/*.{#{@file_type}}").each do |f|
51
- handle_file f
53
+ dir_name = File.dirname(f)
54
+ if /Pods/ =~ f
55
+ mod_name = framework_name(dir_name)
56
+ handle_file f if /^ML/ =~ mod_name
57
+ else
58
+ handle_file f
59
+ end
52
60
  end
53
61
  end
54
62
 
@@ -59,17 +67,86 @@ module Pod
59
67
  def handle_file(file)
60
68
  File.open(file, 'r') do |f|
61
69
  f.each_line do |line|
62
- handle_line(file, line) if zh_ch_reg =~ line
70
+ handle_line(file, line) if zh_ch_reg =~ line && !((/DDLog/ =~ line) || (/NSLog/ =~ line))
63
71
  end
64
72
  end
65
73
  end
66
74
 
67
75
  def handle_line(file, line)
68
76
  line.scan(zh_ch_reg) do |str|
69
- key = "#{File.basename(file, '.*')}.#{rand(36**8).to_s(36)}"
70
- @cn_keys << { key: key, cn: str[2, str.length - 3], en: '', str: str, dirname: File.dirname(file),
71
- fname: File.basename(file) }
77
+ fname = File.basename(file)
78
+ dir_name = File.dirname(file)
79
+ mod_name = framework_name(dir_name)
80
+ key = "#{mod_name}.#{File.basename(file, '.*')}.#{rand(36**8).to_s(36)}"
81
+ cn_str = str[2, str.length - 3]
82
+ en_str = cn_str.gsub(/[\u4e00-\u9fa5]/, 'x')
83
+ @cn_keys << { key: key, cn: cn_str, en: en_str, fname: fname, dirname: dir_name }
84
+ end
85
+ end
86
+
87
+ def framework_name(path)
88
+ mod_name = 'Main'
89
+ if /pods/i =~ path
90
+ ary = path.split('/')
91
+ index = ary.find_index { |p| p.eql?('Pods') }
92
+ if index
93
+ i = index + 1
94
+ mod_name = ary[i]
95
+ end
96
+ end
97
+ mod_name
98
+ end
99
+
100
+ def handle_static_line(file, line)
101
+ line.scan(zh_ch_reg) do |str|
102
+ ma = line.match(/\*.*=/)
103
+ key = ma[0][1, ma[0].length - 2].strip
104
+ @key_map[key.to_sym] = str
105
+ end
106
+ end
107
+
108
+ def update_source_header
109
+ Dir.glob("#{@current_path}/**/*.{m,h}").each do |f|
110
+ if f =~ /Pods/
111
+ dir_name = File.dirname(f)
112
+ mod_name = framework_name(dir_name)
113
+ handle_file f if /^ML/ =~ mod_name
114
+ else
115
+ handler_file f
116
+ end
117
+ end
118
+ end
119
+
120
+ def handler_file(file)
121
+ puts "#{File.absolute_path(file)} \n"
122
+ File.chmod(0o644, file)
123
+ str = file_string(file)
124
+ File.open(file, 'w+') do |f|
125
+ f.write(str)
126
+ end
127
+ File.chmod(0o444, file) if file =~ /Pods/
128
+ end
129
+
130
+ def file_string(file)
131
+ str = ''
132
+ File.open(file, 'r+') do |f|
133
+ f.each_line do |line|
134
+ str += format_string(f, line)
135
+ end
136
+ end
137
+ str
138
+ end
139
+
140
+ def format_string(file, line)
141
+ result = line
142
+ unless /static/ =~ line
143
+ @key_map.each_key do |key|
144
+ n_key = /#{key.to_s}\s/
145
+ n_val = "#{@key_map[key]}\s"
146
+ result = result.gsub(n_key, n_val)
147
+ end
72
148
  end
149
+ result
73
150
  end
74
151
  end
75
152
  end
@@ -0,0 +1,85 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'csv'
4
+
5
+ module Pod
6
+ class Command
7
+ class Bin < Command
8
+ class Filter < Bin
9
+ self.summary = '过滤重复对象'
10
+
11
+ def initialize(argv)
12
+ @current_path = argv.shift_argument || Dir.pwd
13
+ @file_type = argv.option('file-type', 'm,h')
14
+ @file_name = argv.option('file-name', 'MaucaoLife_zh_en.csv')
15
+ @cn_keys = []
16
+ @key_map = {}
17
+ @used_keys = []
18
+ super
19
+ end
20
+
21
+ def run
22
+ fetch_keys
23
+ read_csv
24
+ gen_csv
25
+ end
26
+
27
+ def csv_file_name
28
+ file_name = @file_name
29
+ file_name = "#{@file_name}.csv" unless /.csv$/ =~ @file_name
30
+ file_name
31
+ end
32
+
33
+ def read_csv
34
+ path = File.join(@current_path, csv_file_name)
35
+ Dir.glob(path).each do |p|
36
+ CSV.foreach(p) do |row|
37
+ key = row[0]
38
+ if @used_keys.any? { |k| k.eql?(key) }
39
+ @cn_keys << { key: key, cn: row[1], en: row[2], fname: row[3], dirname: row[4] }
40
+ end
41
+ end
42
+ end
43
+ end
44
+
45
+ def gen_csv
46
+ file = File.join(@current_path, csv_file_name)
47
+ FileUtils.rm_rf(file) if File.exist?(file)
48
+ CSV.open(file, 'wb:utf-8') do |csv|
49
+ csv << %w[国际化key 中文 英文 所在文件 文件路径]
50
+ @cn_keys.each do |k|
51
+ csv << [k[:key], k[:cn], k[:en], k[:fname], k[:dirname]]
52
+ end
53
+ end
54
+ UI.puts "生成csv文件完成.\n文件路径:#{File.absolute_path(file)}".green
55
+ end
56
+
57
+ def fetch_keys
58
+ Dir.glob("#{@current_path}/**/*.{#{@file_type}}").each do |f|
59
+ handle_file f
60
+ end
61
+ end
62
+
63
+ def zh_ch_reg
64
+ /MLLocalizedString\([^)]+\)/
65
+ end
66
+
67
+ def handle_file(file)
68
+ File.open(file, 'r') do |f|
69
+ f.each_line do |line|
70
+ handle_line(file, line) if zh_ch_reg =~ line
71
+ end
72
+ end
73
+ end
74
+
75
+ def handle_line(file, line)
76
+ line.scan(zh_ch_reg) do |str|
77
+ str[20, str.length - 22]
78
+ @used_keys << str[20, str.length - 22]
79
+ end
80
+ end
81
+
82
+ end
83
+ end
84
+ end
85
+ end
@@ -3,6 +3,7 @@
3
3
  require 'csv'
4
4
  require 'cocoapods-lhj-bin/helpers/trans_helper'
5
5
  require 'cocoapods-lhj-bin/helpers/oss_helper'
6
+ require 'cocoapods-lhj-bin/config/local_config'
6
7
 
7
8
  module Pod
8
9
  class Command
@@ -26,26 +27,26 @@ module Pod
26
27
 
27
28
  def initialize(argv)
28
29
  @current_path = argv.shift_argument || Dir.pwd
29
- @key_col = argv.option('key-col', 0).to_i
30
- @cn_col = argv.option('cn-col', 1).to_i
31
- @en_col = argv.option('en-col', 2).to_i
30
+ @key_col = argv.option('key-col', CBin::LocalConfig.instance.config['csv_key_col']).to_i
31
+ @cn_col = argv.option('cn-col', CBin::LocalConfig.instance.config['csv_cn_col']).to_i
32
+ @en_col = argv.option('en-col', CBin::LocalConfig.instance.config['csv_en_col']).to_i
32
33
  @download_csv_files = argv.option('download-csv')
33
- @read_csv_file = argv.option('read-csv-file', '*')
34
- @gen_file_name = argv.option('gen-file', 'Localizable.strings')
34
+ @read_csv_file = argv.option('read-csv-file', CBin::LocalConfig.instance.config['read_csv_file'])
35
+ @gen_file_name = argv.option('gen-file', CBin::LocalConfig.instance.config['gen_file_name'])
35
36
  @modify_source_flag = argv.flag?('modify-source', false)
36
37
  @modify_file_type = argv.option('modify-file-type', 'm,h')
37
- @modify_format_string = argv.option('modify-format-string', 'NSLocalizedString(%s, @"")')
38
+ @modify_format_string = argv.option('modify-format-string', CBin::LocalConfig.instance.config['source_format_string'])
38
39
  @key_map = {}
39
40
  super
40
41
  end
41
42
 
42
43
  def run
43
- down_load_csv_file if @download_csv_files
44
+ down_load_csv_file if need_download
44
45
  read_csv_file
45
46
  if @key_map.keys.length.positive?
46
47
  write_en_strings
47
- write_zh_cn_strings
48
48
  write_zh_hk_strings
49
+ write_zh_cn_strings
49
50
  handle_modify_source if @modify_source_flag
50
51
  else
51
52
  UI.puts "获取中英文映射文件失败, 检查参数--read-csv-file=xx是否正常\n".red
@@ -53,21 +54,29 @@ module Pod
53
54
  end
54
55
 
55
56
  def en_dir_name
56
- 'local_gen/en.lproj'
57
+ CBin::LocalConfig.instance.config['gen_en_dir']
57
58
  end
58
59
 
59
60
  def zh_hk_dir_name
60
- 'local_gen/zh-hk.lproj'
61
+ CBin::LocalConfig.instance.config['gen_zh_hk_dir']
61
62
  end
62
63
 
63
64
  def zh_cn_dir_name
64
- 'local_gen/zh-cn.lproj'
65
+ CBin::LocalConfig.instance.config['gen_zh_cn_dir']
65
66
  end
66
67
 
67
68
  def generate_file_name
68
69
  @gen_file_name
69
70
  end
70
71
 
72
+ def need_download
73
+ @download_csv_files || CBin::LocalConfig.instance.config['download']
74
+ end
75
+
76
+ def download_cvs_str
77
+ @download_csv_files || CBin::LocalConfig.instance.config['download_csv']
78
+ end
79
+
71
80
  def read_csv_file_name
72
81
  file_name = @read_csv_file
73
82
  file_name = "#{@read_csv_file}.csv" unless /.csv$/ =~ @read_csv_file
@@ -101,7 +110,7 @@ module Pod
101
110
 
102
111
  def get_download_keys
103
112
  download_keys = []
104
- csv_files = @download_csv_files.split(/,/).map(&:strip)
113
+ csv_files = download_cvs_str.split(/,/).map(&:strip)
105
114
  all_keys = CBin::OSS::Helper.instance.list.map(&:key)
106
115
  csv_files.each do |f|
107
116
  arr = all_keys.select { |k| %r{^csv/} =~ k && /#{f}/ =~ k }
@@ -126,16 +135,23 @@ module Pod
126
135
  def handle_modify_source
127
136
  UI.puts '修改源码开始'
128
137
  Dir.glob("#{@current_path}/**/*.{#{@modify_file_type}}").each do |f|
129
- handle_modify_file f if File.stat(f).writable?
138
+ # handle_modify_file f if File.stat(f).writable?
139
+ if f =~ /Pods/
140
+ handle_modify_file(f) if f =~ %r{Pods/ML}
141
+ else
142
+ handle_modify_file(f)
143
+ end
130
144
  end
131
145
  UI.puts '修改源码结束'
132
146
  end
133
147
 
134
148
  def handle_modify_file(file)
149
+ File.chmod(0o644, file)
135
150
  str = modify_file_string(file)
136
151
  File.open(file, 'w+') do |f|
137
152
  f.write(str)
138
153
  end
154
+ File.chmod(0o444, file) if file =~ /Pods/
139
155
  end
140
156
 
141
157
  def modify_file_string(file)
@@ -154,7 +170,7 @@ module Pod
154
170
 
155
171
  def modify_format_string(file, line)
156
172
  result = line
157
- result = handle_modify_line(file, line) if zh_ch_reg =~ line
173
+ result = handle_modify_line(file, line) if zh_ch_reg =~ line && !((/DDLog/ =~ line) || (/NSLog/ =~ line))
158
174
  result
159
175
  end
160
176
 
@@ -173,12 +189,12 @@ module Pod
173
189
  def find_key_by_cn_val(file, val)
174
190
  file_name = File.basename(file, '.*')
175
191
  cn_key = val[2, val.length - 3]
176
- index = @key_map.values.find_index { |obj| /^#{cn_key}$/ =~ obj[:zh] && /^#{file_name}/ =~ obj[:key] }
177
- index ||= @key_map.values.find_index { |obj| /^#{cn_key}$/ =~ obj[:zh] }
192
+ index = @key_map.values.find_index { |obj| cn_key.eql?(obj[:zh]) && /#{file_name}/ =~ obj[:key] }
193
+ index ||= @key_map.values.find_index { |obj| cn_key.eql?(obj[:zh]) }
178
194
  @key_map.values[index][:key] if index
179
195
  end
180
196
 
181
- def format_str(type, area = :cn)
197
+ def format_str(type, area = :origin)
182
198
  str = ''
183
199
  @key_map.each do |k, v|
184
200
  val = v[type]
@@ -213,14 +229,34 @@ module Pod
213
229
  end
214
230
 
215
231
  def write_zh_cn_strings
232
+ if CBin::LocalConfig.instance.config['gen_zh_cn']
233
+ gen_zh_cn_strings_file
234
+ else
235
+ copy_hk_to_cn_file
236
+ end
237
+ end
238
+
239
+ def gen_zh_cn_strings_file
216
240
  file = File.join(@current_path, zh_cn_dir_name, generate_file_name)
217
- generate_file(file, :zh)
241
+ area = :origin
242
+ area = :cn if CBin::LocalConfig.instance.config['trans_zh_cn']
243
+ content = format_str(:zh, area)
244
+ write_to_file(file, content)
218
245
  UI.puts "生成简体中文配置完成.文件路径:#{File.absolute_path(file)}\n".green
219
246
  end
220
247
 
248
+ def copy_hk_to_cn_file
249
+ source_file = File.join(@current_path, zh_hk_dir_name, generate_file_name)
250
+ dest_file = File.join(@current_path, zh_cn_dir_name, generate_file_name)
251
+ FileUtils.cp source_file, dest_file
252
+ UI.puts "繁体中文配置覆盖简体中文配置\n".green
253
+ end
254
+
221
255
  def write_zh_hk_strings
222
256
  file = File.join(@current_path, zh_hk_dir_name, generate_file_name)
223
- content = format_str(:zh, :hk)
257
+ area = :origin
258
+ area = :hk if CBin::LocalConfig.instance.config['trans_zh_hk']
259
+ content = format_str(:zh, area)
224
260
  write_to_file(file, content)
225
261
  UI.puts "生成繁体中文配置完成.文件路径:#{File.absolute_path(file)}\n".green
226
262
  end
@@ -0,0 +1,89 @@
1
+ # frozen_string_literal: true
2
+
3
+ require 'csv'
4
+
5
+ module Pod
6
+ class Command
7
+ class Bin < Command
8
+ class Service < Bin
9
+ self.summary = '微服务名变更'
10
+
11
+ def initialize(argv)
12
+ @current_path = argv.shift_argument || Dir.pwd
13
+ @file_type = argv.option('file-type', 'm,h')
14
+ @file_name = argv.option('file-name', 'service_map.csv')
15
+ @service_map = {}
16
+ super
17
+ end
18
+
19
+ def run
20
+ read_csv
21
+ update_source
22
+ end
23
+
24
+ def read_csv
25
+ path = File.join(@current_path, csv_file_name)
26
+ Dir.glob(path).each do |p|
27
+ CSV.foreach(p) do |row|
28
+ @service_map[row[0]] = row[1] if row[0]
29
+ end
30
+ end
31
+ end
32
+
33
+ def csv_file_name
34
+ file_name = @file_name
35
+ file_name = "#{@file_name}.csv" unless /.csv$/ =~ @file_name
36
+ file_name
37
+ end
38
+
39
+ def update_source
40
+ Dir.glob("#{@current_path}/**/*.{m,h}").each do |f|
41
+ if f =~ /Pods/
42
+ update_file(f) if f =~ %r{Pods/ML}
43
+ else
44
+ update_file(f)
45
+ end
46
+ end
47
+ end
48
+
49
+ def update_file(file)
50
+ File.chmod(0o644, file)
51
+ str = file_string(file)
52
+ File.open(file, 'w+') do |f|
53
+ f.write(str)
54
+ end
55
+ File.chmod(0o444, file) if file =~ /Pods/
56
+ end
57
+
58
+ def file_string(file)
59
+ str = ''
60
+ File.open(file, 'r+') do |f|
61
+ f.each_line do |line|
62
+ str += format_string(f, line)
63
+ end
64
+ end
65
+ str
66
+ end
67
+
68
+ def format_string(file, line)
69
+ result = line
70
+ if url_reg =~ line
71
+ line.scan(url_reg).flatten.each do |key|
72
+ result = result.gsub(key, @service_map[key]) if key && @service_map[key]
73
+ end
74
+ end
75
+ result
76
+ end
77
+
78
+ def url_reg
79
+ @url_key_reg ||= begin
80
+ keys = @service_map.keys.join('|')
81
+ /(#{keys})/
82
+ end
83
+ @url_key_reg
84
+ end
85
+
86
+ end
87
+ end
88
+ end
89
+ end
@@ -0,0 +1,52 @@
1
+ require 'yaml'
2
+ require 'cocoapods-lhj-bin/helpers/oss_helper'
3
+
4
+ module CBin
5
+ class LocalConfig
6
+ def config_file
7
+ File.join(Pod::Config.instance.home_dir, config_file_name)
8
+ end
9
+
10
+ def config_file_name
11
+ 'localizable_config.yml'
12
+ end
13
+
14
+ def syn_config_file
15
+ CBin::OSS::Helper.instance.down_load(config_file_name, config_file)
16
+ end
17
+
18
+ def default_config
19
+ { 'gen_en_dir' => 'local_gen/en.lproj',
20
+ 'gen_zh_hk_dir' => 'local_gen/zh-Hant.lproj',
21
+ 'gen_zh_cn_dir' => 'local_gen/zh-Hans.lproj',
22
+ 'gen_file_name' => 'Localizable.strings',
23
+ 'source_format_string' => 'NSLocalizedString(%s, @"")',
24
+ 'csv_key_col' => 0,
25
+ 'csv_cn_col' => 1,
26
+ 'csv_en_col' => 2,
27
+ 'read_csv_file' => '*.csv',
28
+ 'gen_zh_cn' => true,
29
+ 'trans_zh_hk' => false,
30
+ 'trans_zh_cn' => false,
31
+ 'download' => false,
32
+ 'download_csv' => 'zh_en.csv' }
33
+ end
34
+
35
+ def load_config
36
+ if File.exist?(config_file)
37
+ YAML.load_file(config_file)
38
+ else
39
+ default_config
40
+ end
41
+ end
42
+
43
+ def config
44
+ @config ||= load_config
45
+ end
46
+
47
+ def self.instance
48
+ @instance ||= new
49
+ end
50
+
51
+ end
52
+ end
@@ -1,5 +1,5 @@
1
1
  module CBin
2
- VERSION = '0.1.7'
2
+ VERSION = '0.1.12'
3
3
  end
4
4
 
5
5
  module Pod
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-aomi-bin
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.12
5
5
  platform: ruby
6
6
  authors:
7
7
  - lihaijian
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-05-18 00:00:00.000000000 Z
11
+ date: 2021-05-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -118,7 +118,9 @@ files:
118
118
  - lib/cocoapods-lhj-bin/command/bin/lhj.rb
119
119
  - lib/cocoapods-lhj-bin/command/bin/lib/lint.rb
120
120
  - lib/cocoapods-lhj-bin/command/bin/local/fetch.rb
121
+ - lib/cocoapods-lhj-bin/command/bin/local/filter.rb
121
122
  - lib/cocoapods-lhj-bin/command/bin/local/local.rb
123
+ - lib/cocoapods-lhj-bin/command/bin/local/micro_service.rb
122
124
  - lib/cocoapods-lhj-bin/command/bin/local/upload.rb
123
125
  - lib/cocoapods-lhj-bin/command/bin/oss/del.rb
124
126
  - lib/cocoapods-lhj-bin/command/bin/oss/list.rb
@@ -132,6 +134,7 @@ files:
132
134
  - lib/cocoapods-lhj-bin/config/config_builder.rb
133
135
  - lib/cocoapods-lhj-bin/config/config_hot_key.rb
134
136
  - lib/cocoapods-lhj-bin/config/config_hot_key_asker.rb
137
+ - lib/cocoapods-lhj-bin/config/local_config.rb
135
138
  - lib/cocoapods-lhj-bin/gem_version.rb
136
139
  - lib/cocoapods-lhj-bin/helpers.rb
137
140
  - lib/cocoapods-lhj-bin/helpers/Info.plist