pindo 4.9.2 → 4.9.4
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/pindo/base/githelper.rb +6 -6
- data/lib/pindo/client/pgyerclient.rb +1 -1
- data/lib/pindo/command/dev/autobuild.rb +55 -107
- data/lib/pindo/command/dev/build.rb +40 -43
- data/lib/pindo/command/dev/debug.rb +6 -4
- data/lib/pindo/command/dev/repoinit.rb +128 -0
- data/lib/pindo/command/dev/tag.rb +26 -13
- data/lib/pindo/command/dev.rb +1 -2
- data/lib/pindo/command/ios/autobuild.rb +210 -0
- data/lib/pindo/command/ios/build.rb +14 -0
- data/lib/pindo/command/ios/debug.rb +133 -164
- data/lib/pindo/command/ios.rb +2 -2
- data/lib/pindo/command/ipa/import.rb +1 -1
- data/lib/pindo/command/pgyer/apptest.rb +18 -7
- data/lib/pindo/command/pgyer/comment.rb +15 -3
- data/lib/pindo/command/pgyer/download.rb +15 -3
- data/lib/pindo/command/pgyer/login.rb +14 -4
- data/lib/pindo/command/pgyer/resign.rb +20 -4
- data/lib/pindo/command/pgyer/upload.rb +52 -8
- data/lib/pindo/command/unity/ipa.rb +34 -68
- data/lib/pindo/command.rb +0 -1
- data/lib/pindo/module/build/buildhelper.rb +48 -4
- data/lib/pindo/module/build/unityhelper.rb +33 -106
- data/lib/pindo/version.rb +1 -1
- metadata +4 -10
- data/lib/pindo/command/dev/applovin.rb +0 -223
- data/lib/pindo/command/dev/autoresign.rb +0 -143
- data/lib/pindo/command/dev/confusecode.rb +0 -127
- data/lib/pindo/command/dev/confuseproj.rb +0 -111
- data/lib/pindo/command/dev/createbuild.rb +0 -156
- data/lib/pindo/command/dev/pgyercert.rb +0 -75
- data/lib/pindo/command/ios/cert.rb +0 -164
- data/lib/pindo/command/upgrade.rb +0 -56
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0abd0eb9f20e688da8b9af08a82ea9d8dcb23e3933417ee9500a63542396d20c
|
4
|
+
data.tar.gz: a35604b42071177e27fa45ba3da6231b32d268ed2f1a3d381fbe3b3b8401a1bc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fade81f54a82cbbc4be6258703b706c19b13fabfb0fe23ff2436202d891e1796765c538482da925e96239ed24fde08a64d87c2f918db5a46393f69a9e2094898
|
7
|
+
data.tar.gz: 194d66f52e3894e8bd1749420ee549e2977b11536c4702581cfc295d5afa9f88cdce4fe73a7af9a50f52a4500e18eb2145ec4f143a084a4f26c2cb601c544f58
|
data/lib/pindo/base/githelper.rb
CHANGED
@@ -590,7 +590,7 @@ module Pindo
|
|
590
590
|
return new_tag
|
591
591
|
end
|
592
592
|
|
593
|
-
if is_tag_at_head?(
|
593
|
+
if is_tag_at_head?(git_root_dir: project_dir, tag_name: latest_tag)
|
594
594
|
return latest_tag
|
595
595
|
end
|
596
596
|
|
@@ -627,17 +627,17 @@ module Pindo
|
|
627
627
|
end
|
628
628
|
|
629
629
|
# 检查tag是否在指定的commit上
|
630
|
-
# @param
|
630
|
+
# @param git_root_dir [String] 项目目录路径
|
631
631
|
# @param tag_name [String] 标签名称
|
632
632
|
# @return [Boolean] 如果tag在当前HEAD上返回true,否则返回false
|
633
|
-
def is_tag_at_head?(
|
634
|
-
return false if
|
633
|
+
def is_tag_at_head?(git_root_dir:nil, tag_name:nil)
|
634
|
+
return false if git_root_dir.nil? || tag_name.nil?
|
635
635
|
|
636
636
|
begin
|
637
637
|
# 获取tag的commit hash
|
638
|
-
tag_commit = git!(%W(-C #{
|
638
|
+
tag_commit = git!(%W(-C #{git_root_dir} rev-parse #{tag_name})).strip
|
639
639
|
# 获取HEAD的commit hash
|
640
|
-
head_commit = git!(%W(-C #{
|
640
|
+
head_commit = git!(%W(-C #{git_root_dir} rev-parse HEAD)).strip
|
641
641
|
|
642
642
|
# 比较两个commit hash是否相同
|
643
643
|
tag_commit == head_commit
|
@@ -3,6 +3,7 @@ require 'xcodeproj'
|
|
3
3
|
require 'find'
|
4
4
|
require 'fileutils'
|
5
5
|
require 'pindo/base/executable'
|
6
|
+
require 'pindo/module/build/buildhelper'
|
6
7
|
|
7
8
|
module Pindo
|
8
9
|
class Command
|
@@ -11,23 +12,50 @@ module Pindo
|
|
11
12
|
|
12
13
|
include Appselect
|
13
14
|
|
15
|
+
# 命令的简要说明 - 自动编译并发布工程
|
14
16
|
self.summary = '自动编译工程,并支持上传ipa到测试网站'
|
15
17
|
|
18
|
+
# 命令的详细说明,包含用法示例
|
16
19
|
self.description = <<-DESC
|
17
|
-
|
20
|
+
自动编译工程并支持上传到测试平台。
|
21
|
+
|
22
|
+
支持功能:
|
23
|
+
|
24
|
+
* 自动编译工程
|
25
|
+
|
26
|
+
* 上传到测试平台
|
27
|
+
|
28
|
+
* 发送测试通知
|
29
|
+
|
30
|
+
* 支持多种编译模式
|
31
|
+
|
32
|
+
使用示例:
|
33
|
+
|
34
|
+
$ pindo dev autobuild # 使用开发证书编译
|
35
|
+
|
36
|
+
$ pindo dev autobuild --deploy # 使用发布bundle id
|
37
|
+
|
38
|
+
$ pindo dev autobuild --adhoc # 使用adhoc证书编译
|
39
|
+
|
40
|
+
$ pindo dev autobuild --proj=myapp # 指定项目名称
|
41
|
+
|
42
|
+
$ pindo dev autobuild --upload # 上传编译包
|
43
|
+
|
44
|
+
$ pindo dev autobuild --send # 发送测试通知
|
18
45
|
DESC
|
19
46
|
|
47
|
+
# 命令的参数列表
|
20
48
|
self.arguments = [
|
21
|
-
|
22
49
|
]
|
23
50
|
|
51
|
+
# 命令的选项列表
|
24
52
|
def self.options
|
25
53
|
[
|
26
|
-
['--deploy',
|
27
|
-
['--adhoc',
|
28
|
-
['--proj',
|
29
|
-
['--upload',
|
30
|
-
['--send',
|
54
|
+
['--deploy', '默认用开发的bundle id,用法:pindo dev autobuild --deploy'],
|
55
|
+
['--adhoc', '默认用dev证书,使用--adhoc设置使用adhoc证书编译'],
|
56
|
+
['--proj', '指定上传到pgyer对应的项目名称(大小写空格忽略)'],
|
57
|
+
['--upload', '是否上传编译后的ipa'],
|
58
|
+
['--send', '上传到之后是否发送测试信息'],
|
31
59
|
].concat(super)
|
32
60
|
end
|
33
61
|
|
@@ -54,114 +82,34 @@ module Pindo
|
|
54
82
|
|
55
83
|
def run
|
56
84
|
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
else
|
61
|
-
mainapp_bundleid = get_selected_dev_bundleid()
|
62
|
-
end
|
85
|
+
pindo_unity_project_dir = Dir.pwd
|
86
|
+
build_helper = Pindo::BuildHelper.share_instance
|
87
|
+
pindo_unity_project_dir = Dir.pwd
|
63
88
|
|
64
|
-
app_info_obj = nil
|
65
|
-
if @args_upload_flag
|
66
|
-
proj_name = @args_proj_name
|
67
|
-
app_info_obj = PgyerHelper.share_instace.prepare_upload(working_directory:Dir.pwd, proj_name:proj_name)
|
68
|
-
end
|
69
89
|
|
70
|
-
|
71
|
-
|
72
|
-
|
73
|
-
|
74
|
-
Pindo::Command::Deploy::Pullconfig::run(args_temp)
|
75
|
-
|
76
|
-
project_dir = Dir.pwd
|
77
|
-
Dir.chdir(project_dir)
|
78
|
-
config_json_file = File.join(project_dir,"config.json")
|
79
|
-
Debug::modify_cert_with_project(project_dir:project_dir, config_file:config_json_file)
|
80
|
-
|
81
|
-
if File.exist?(File.join(project_dir, "Podfile"))
|
82
|
-
|
83
|
-
args_temp = []
|
84
|
-
args_temp << config_json_file
|
85
|
-
Pindo::Command::Lib::Update::run([])
|
86
|
-
|
87
|
-
begin
|
88
|
-
if File.exist?(File.join(project_dir, "Podfile.lock"))
|
89
|
-
FileUtils.rm_rf(File.join(project_dir, "Podfile.lock"))
|
90
|
-
end
|
91
|
-
if File.exist?(File.join(project_dir,"Pods"))
|
92
|
-
FileUtils.rm_rf(File.join(project_dir, "Pods"))
|
93
|
-
end
|
94
|
-
puts "正在执行pod deintegrate..."
|
95
|
-
system 'pod deintegrate'
|
96
|
-
puts "正在执行pod install..."
|
97
|
-
system 'pod install'
|
98
|
-
rescue => error
|
99
|
-
puts(error.to_s)
|
100
|
-
raise Informative, "pod install失败!!先pod install 完成后成编译 !"
|
101
|
-
end
|
102
|
-
|
103
|
-
Dir.chdir(project_dir)
|
104
|
-
pod_lock_file = File.join(project_dir, "Podfile.lock")
|
105
|
-
if !File.exist?(pod_lock_file)
|
106
|
-
raise Informative, "pod install失败!!先pod install 完成后成编译 !"
|
107
|
-
end
|
108
|
-
|
109
|
-
end
|
110
|
-
|
90
|
+
build_helper = Pindo::BuildHelper.share_instance
|
91
|
+
project_type = build_helper.project_type(pindo_unity_project_dir)
|
111
92
|
|
112
93
|
args_temp = []
|
113
|
-
if @
|
114
|
-
|
94
|
+
args_temp << "--proj=#{@args_proj_name}" if @args_proj_name
|
95
|
+
args_temp << "--upload" if @args_upload_flag
|
96
|
+
args_temp << "--send" if @args_send_flag
|
97
|
+
args_temp << "--adhoc" if @args_adhoc_flag
|
98
|
+
args_temp << "--deploy" if @args_deploy_flag
|
99
|
+
|
100
|
+
case project_type
|
101
|
+
when :ios
|
102
|
+
puts "iOS工程, 请使用 pindo ios autobuild"
|
103
|
+
Pindo::Command::Ios::Autobuild::run(args_temp)
|
104
|
+
when :android
|
105
|
+
puts "Android工程, 请使用 pindo android autobuild"
|
106
|
+
when :unity
|
107
|
+
raise Informative, "Unity工程, 请使用 pindo unity ipa 或者pindo unity apk"
|
115
108
|
else
|
116
|
-
|
117
|
-
end
|
118
|
-
|
119
|
-
project_fullname = Dir.glob(File.join(project_dir, "/*.xcodeproj")).max_by {|f| File.mtime(f)}
|
120
|
-
if !project_fullname.nil?
|
121
|
-
project_obj = Xcodeproj::Project.open(project_fullname)
|
122
|
-
project_build_platform = project_obj.root_object.build_configuration_list.get_setting("SDKROOT")["Release"]
|
123
|
-
if !project_build_platform.nil? && project_build_platform.eql?("macosx")
|
124
|
-
@args_macos_flag = true
|
125
|
-
end
|
126
|
-
end
|
127
|
-
|
128
|
-
if @args_macos_flag
|
129
|
-
args_temp << "--macos"
|
109
|
+
raise Informative, "当前目录不是工程目录,不能编译"
|
130
110
|
end
|
131
111
|
|
132
|
-
Pindo::Command::Deploy::Cert::run(args_temp)
|
133
|
-
|
134
|
-
Dir.chdir(project_dir)
|
135
|
-
Pindo::Command::Deploy::Build::run(args_temp)
|
136
|
-
|
137
|
-
|
138
|
-
pindo_new_project_dir = Dir.pwd
|
139
|
-
build_path = File.join(pindo_new_project_dir, "build", "*.{ipa,app}")
|
140
|
-
ipa_file_upload = Dir.glob(build_path).max_by {|f| File.mtime(f)}
|
141
|
-
|
142
|
-
if !ipa_file_upload.nil? && !app_info_obj.nil?
|
143
|
-
description = nil
|
144
|
-
if File.exist?(File.join(pindo_new_project_dir, ".release_info"))
|
145
|
-
description = File.read(File.join(pindo_new_project_dir, ".release_info"))
|
146
|
-
else
|
147
|
-
if File.exist?(File.join(pindo_new_project_dir, ".git"))
|
148
|
-
description = git!(%W(-C #{pindo_new_project_dir} show -s --format=%h::%s)).strip
|
149
|
-
end
|
150
|
-
end
|
151
|
-
result_data = PgyerHelper.share_instace.start_upload(app_info_obj:app_info_obj, ipa_file_upload:ipa_file_upload, description:description)
|
152
|
-
if !result_data.nil? && !result_data["data"].nil? && !result_data["data"]["id"].nil?
|
153
|
-
msg_data = PgyerHelper.share_instace.make_msg_data(app_info_obj:app_info_obj, app_version_info_obj:result_data["data"])
|
154
|
-
PgyerHelper.share_instace.print_app_version_info(msg_data:msg_data)
|
155
|
-
if @args_send_flag
|
156
|
-
PgyerHelper.share_instace.send_apptest_wechat_msg(msg_data:msg_data)
|
157
|
-
end
|
158
|
-
end
|
159
|
-
end
|
160
|
-
|
161
|
-
system "open #{project_dir}"
|
162
|
-
|
163
112
|
end
|
164
|
-
|
165
113
|
end
|
166
114
|
end
|
167
115
|
end
|
@@ -3,24 +3,43 @@ require 'fileutils'
|
|
3
3
|
require 'json'
|
4
4
|
require 'xcodeproj'
|
5
5
|
require 'gym'
|
6
|
+
require 'pindo/module/build/buildhelper'
|
6
7
|
|
7
8
|
module Pindo
|
8
9
|
class Command
|
9
10
|
class Dev < Command
|
10
11
|
class Build < Dev
|
11
12
|
|
12
|
-
|
13
|
+
# 命令的简要说明 - 编译工程并上传测试
|
13
14
|
self.summary = '编译工程,并支持上传ipa到测试网站'
|
14
15
|
|
16
|
+
# 命令的详细说明,包含用法示例
|
15
17
|
self.description = <<-DESC
|
16
|
-
|
18
|
+
编译工程并支持上传到测试平台。
|
19
|
+
|
20
|
+
支持功能:
|
21
|
+
|
22
|
+
* 编译工程
|
23
|
+
|
24
|
+
* 上传到测试平台
|
25
|
+
|
26
|
+
* 发送测试通知
|
27
|
+
|
28
|
+
使用示例:
|
29
|
+
|
30
|
+
$ pindo dev build # 仅编译
|
31
|
+
|
32
|
+
$ pindo dev build --upload # 编译并上传
|
33
|
+
|
34
|
+
$ pindo dev build --send # 编译并发送通知
|
35
|
+
|
36
|
+
$ pindo dev build --proj=myapp # 指定项目名称
|
17
37
|
DESC
|
18
38
|
|
39
|
+
# 命令的参数列表
|
19
40
|
self.arguments = [
|
20
|
-
|
21
41
|
]
|
22
42
|
|
23
|
-
|
24
43
|
def self.options
|
25
44
|
[
|
26
45
|
['--proj', '指定上传到pgyer对应的项目名称(大小写空格忽略),用法:pindo dev build --proj=aichatv4'],
|
@@ -46,51 +65,29 @@ module Pindo
|
|
46
65
|
|
47
66
|
def run
|
48
67
|
|
49
|
-
|
50
|
-
app_info_obj = nil
|
51
|
-
if @args_upload_flag
|
52
|
-
proj_name = @args_proj_name
|
53
|
-
app_info_obj = PgyerHelper.share_instace.prepare_upload(working_directory:Dir.pwd, proj_name:proj_name)
|
54
|
-
end
|
68
|
+
pindo_unity_project_dir = Dir.pwd
|
55
69
|
|
70
|
+
build_helper = Pindo::BuildHelper.share_instance
|
71
|
+
project_type = build_helper.project_type(pindo_unity_project_dir)
|
56
72
|
|
57
73
|
args_temp = []
|
58
|
-
|
59
|
-
|
60
|
-
|
61
|
-
|
62
|
-
|
63
|
-
|
64
|
-
|
65
|
-
|
66
|
-
|
67
|
-
|
68
|
-
|
69
|
-
|
70
|
-
|
71
|
-
|
72
|
-
description = git!(%W(-C #{pindo_new_project_dir} show -s --format=%h::%s)).strip
|
73
|
-
unless !description.nil? && description.length > 10
|
74
|
-
description = nil
|
75
|
-
end
|
76
|
-
end
|
77
|
-
end
|
78
|
-
|
79
|
-
result_data = PgyerHelper.share_instace.start_upload(app_info_obj:app_info_obj, ipa_file_upload:ipa_file_upload, description:description)
|
80
|
-
if !result_data.nil? && !result_data["data"].nil? && !result_data["data"]["id"].nil?
|
81
|
-
msg_data = PgyerHelper.share_instace.make_msg_data(app_info_obj:app_info_obj, app_version_info_obj:result_data["data"])
|
82
|
-
|
83
|
-
PgyerHelper.share_instace.print_app_version_info(msg_data:msg_data)
|
84
|
-
if @args_send_flag
|
85
|
-
PgyerHelper.share_instace.send_apptest_wechat_msg(msg_data:msg_data)
|
86
|
-
end
|
87
|
-
end
|
74
|
+
args_temp << "--proj=#{@args_proj_name}" if @args_proj_name
|
75
|
+
args_temp << "--upload" if @args_upload_flag
|
76
|
+
args_temp << "--send" if @args_send_flag
|
77
|
+
case project_type
|
78
|
+
when :ios
|
79
|
+
puts "iOS 工程, 请使用 pindo ios build"
|
80
|
+
Pindo::Command::Ios::Build::run(args_temp)
|
81
|
+
when :android
|
82
|
+
puts "Android 工程, 请使用 pindo android build"
|
83
|
+
Pindo::Command::Android::Build::run(args_temp)
|
84
|
+
when :unity
|
85
|
+
raise Informative, "Unity 工程, 请使用 pindo unity ipa 或者pindo unity apk"
|
86
|
+
else
|
87
|
+
raise Informative, "当前目录不是工程目录,不能编译"
|
88
88
|
end
|
89
89
|
|
90
|
-
|
91
90
|
end
|
92
|
-
|
93
|
-
|
94
91
|
end
|
95
92
|
end
|
96
93
|
end
|
@@ -9,8 +9,10 @@ module Pindo
|
|
9
9
|
|
10
10
|
include XcodeCertHelper
|
11
11
|
|
12
|
+
# 命令的简要说明 - 更新证书并设置工程
|
12
13
|
self.summary = '更新证书并使用新证书设置工程'
|
13
14
|
|
15
|
+
# 命令的详细说明,包含用法示例
|
14
16
|
self.description = <<-DESC
|
15
17
|
更新证书并使用新证书设置工程。
|
16
18
|
|
@@ -30,15 +32,17 @@ module Pindo
|
|
30
32
|
|
31
33
|
$ pindo dev debug --deploy # 使用发布bundle id
|
32
34
|
|
33
|
-
$ pindo dev debug --adhoc
|
35
|
+
$ pindo dev debug --adhoc # 使用adhoc证书
|
34
36
|
|
35
|
-
$ pindo dev debug --macos
|
37
|
+
$ pindo dev debug --macos # 使用macOS证书
|
36
38
|
DESC
|
37
39
|
|
40
|
+
# 命令的参数列表
|
38
41
|
self.arguments = [
|
39
42
|
# 暂无参数
|
40
43
|
]
|
41
44
|
|
45
|
+
# 命令的选项列表
|
42
46
|
def self.options
|
43
47
|
[
|
44
48
|
['--deploy', '使用发布bundle id(默认使用开发bundle id)'],
|
@@ -149,10 +153,8 @@ module Pindo
|
|
149
153
|
|
150
154
|
end
|
151
155
|
|
152
|
-
|
153
156
|
end
|
154
157
|
|
155
|
-
|
156
158
|
end
|
157
159
|
end
|
158
160
|
end
|
@@ -0,0 +1,128 @@
|
|
1
|
+
require 'highline/import'
|
2
|
+
require 'fileutils'
|
3
|
+
|
4
|
+
module Pindo
|
5
|
+
class Command
|
6
|
+
class Dev < Command
|
7
|
+
class Repoinit < Dev
|
8
|
+
|
9
|
+
include Pindo::Githelper
|
10
|
+
|
11
|
+
# 命令的简要说明 - 初始化git仓库配置
|
12
|
+
self.summary = '初始化git仓库中git cliff的配置'
|
13
|
+
|
14
|
+
# 命令的详细说明,包含用法示例
|
15
|
+
self.description = <<-DESC
|
16
|
+
初始化git仓库中git cliff的配置。
|
17
|
+
|
18
|
+
支持功能:
|
19
|
+
|
20
|
+
* 初始化git cliff配置
|
21
|
+
|
22
|
+
* 生成配置文件
|
23
|
+
|
24
|
+
使用示例:
|
25
|
+
|
26
|
+
$ pindo dev repoinit # 初始化配置
|
27
|
+
DESC
|
28
|
+
|
29
|
+
# 命令的参数列表
|
30
|
+
self.arguments = []
|
31
|
+
|
32
|
+
def self.options
|
33
|
+
[
|
34
|
+
].concat(super)
|
35
|
+
end
|
36
|
+
|
37
|
+
def initialize(argv)
|
38
|
+
@mode = argv.option('mode') || 'minor'
|
39
|
+
@force_retag = argv.flag?('retag', false)
|
40
|
+
|
41
|
+
unless ['major', 'minor', 'patch'].include?(@mode)
|
42
|
+
raise Informative, "mode参数必须是 major, minor 或 patch"
|
43
|
+
end
|
44
|
+
|
45
|
+
super
|
46
|
+
@additional_args = argv.remainder!
|
47
|
+
end
|
48
|
+
|
49
|
+
def write_gitignore(project_dir)
|
50
|
+
gitignore_path = File.join(project_dir, '.gitignore')
|
51
|
+
gitignore_content = <<~GITIGNORE
|
52
|
+
# Build logs
|
53
|
+
build_ios.log
|
54
|
+
CHANGELOG.md
|
55
|
+
|
56
|
+
# Platform specific directories
|
57
|
+
/GoodPlatform/iOS/*
|
58
|
+
/GoodPlatform/Android/*
|
59
|
+
/GoodPlatform/MacOS/*
|
60
|
+
/GoodPlatform/BaseiOS/Unity/*
|
61
|
+
/GoodPlatform/BaseiOS/Pods/
|
62
|
+
/GoodPlatform/BaseiOS/Podfile.lock
|
63
|
+
/GoodPlatform/BaseAndroid/Unity/*
|
64
|
+
/GoodPlatform/BaseMac/Unity/*
|
65
|
+
GITIGNORE
|
66
|
+
|
67
|
+
# Append to existing .gitignore or create new one
|
68
|
+
File.open(gitignore_path, 'a') do |f|
|
69
|
+
f.puts("\n# Added by Pindo")
|
70
|
+
f.puts(gitignore_content)
|
71
|
+
end
|
72
|
+
end
|
73
|
+
|
74
|
+
def run
|
75
|
+
|
76
|
+
clone_pindo_common_config_repo(force_delete:false)
|
77
|
+
pindo_common_dir = pindo_single_config.pindo_common_configdir
|
78
|
+
|
79
|
+
current_dir = Dir.pwd
|
80
|
+
puts
|
81
|
+
Funlog.instance.fancyinfo_start("添加仓库日志变更配置 git-cliff")
|
82
|
+
if is_git_directory?(local_repo_dir: current_dir)
|
83
|
+
current_git_root_path = git_root_directory(local_repo_dir: current_dir)
|
84
|
+
if File.exist?(File.join(pindo_common_dir, 'cliff.toml'))
|
85
|
+
FileUtils.cp_r(File.join(pindo_common_dir, 'cliff.toml'), File.join(current_git_root_path, 'cliff.toml'))
|
86
|
+
end
|
87
|
+
Funlog.instance.fancyinfo_update("仓库添加cliff配置")
|
88
|
+
write_gitignore(current_git_root_path)
|
89
|
+
Funlog.instance.fancyinfo_update("仓库添加.gitignore")
|
90
|
+
Dir.chdir(current_dir)
|
91
|
+
current_branch = git!(%W(-C #{current_dir} rev-parse --abbrev-ref HEAD)).strip
|
92
|
+
git!(%W(-C #{current_dir} add cliff.toml))
|
93
|
+
git!(%W(-C #{current_dir} add .gitignore))
|
94
|
+
git!(%W(-C #{current_dir} commit -m "更新cliff配置"))
|
95
|
+
git!(%W(-C #{current_dir} push origin #{current_branch}))
|
96
|
+
|
97
|
+
else
|
98
|
+
Funlog.instance.fancyinfo_error("当前目录不是git仓库,请在git仓库根目录下执行此命令")
|
99
|
+
raise Informative, "当前目录不是git仓库,请在git仓库根目录下执行此命令"
|
100
|
+
end
|
101
|
+
Funlog.instance.fancyinfo_success("仓库配置完成!")
|
102
|
+
|
103
|
+
|
104
|
+
|
105
|
+
puts "\n检查git-cliff命令是否安装"
|
106
|
+
# 请检查git-cliff命令是否安装
|
107
|
+
begin
|
108
|
+
if !system('git-cliff --version')
|
109
|
+
# /bin/bash -c "$(curl -fsSL https://gitee.com/goodtools/env/raw/master/gitcliff_install.sh)"
|
110
|
+
#安装git-cliff
|
111
|
+
system('bash -c "$(curl -fsSL https://gitee.com/goodtools/env/raw/master/gitcliff_install.sh)"')
|
112
|
+
else
|
113
|
+
puts "git-cliff已安装"
|
114
|
+
end
|
115
|
+
rescue
|
116
|
+
raise Informative, "安装git-cliff出现错误"
|
117
|
+
end
|
118
|
+
|
119
|
+
|
120
|
+
end
|
121
|
+
|
122
|
+
|
123
|
+
|
124
|
+
|
125
|
+
end
|
126
|
+
end
|
127
|
+
end
|
128
|
+
end
|
@@ -5,23 +5,36 @@ module Pindo
|
|
5
5
|
class Command
|
6
6
|
class Dev < Command
|
7
7
|
class Tag < Dev
|
8
|
+
# 命令的简要说明 - 发布代码并添加tag
|
8
9
|
self.summary = '发布代码,添加tag,添加发布信息,并合并到发布分支'
|
10
|
+
|
11
|
+
# 命令的详细说明,包含用法示例
|
9
12
|
self.description = <<-DESC
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
13
|
+
发布代码,添加tag,添加发布信息,并合并到发布分支。
|
14
|
+
|
15
|
+
支持功能:
|
16
|
+
|
17
|
+
* 处理未提交的文件
|
18
|
+
|
19
|
+
* 添加版本tag
|
20
|
+
|
21
|
+
* 合并到发布分支
|
22
|
+
|
23
|
+
使用示例:
|
24
|
+
|
25
|
+
$ pindo dev tag # 使用minor模式创建tag
|
26
|
+
|
27
|
+
$ pindo dev tag --mode=major # 使用major模式创建tag
|
28
|
+
|
29
|
+
$ pindo dev tag --mode=patch # 使用patch模式创建tag
|
30
|
+
|
31
|
+
$ pindo dev tag --retag # 强制重新打tag
|
22
32
|
DESC
|
33
|
+
|
34
|
+
# 命令的参数列表
|
23
35
|
self.arguments = []
|
24
36
|
|
37
|
+
# 命令的选项列表
|
25
38
|
def self.options
|
26
39
|
[
|
27
40
|
['--mode', '指定版本号增加模式(major/minor/patch),默认minor'],
|
@@ -96,7 +109,7 @@ module Pindo
|
|
96
109
|
return
|
97
110
|
end
|
98
111
|
|
99
|
-
if is_tag_at_head?(
|
112
|
+
if is_tag_at_head?(git_root_dir: project_dir, tag_name: latest_tag)
|
100
113
|
Funlog.instance.fancyinfo_success("当前commit已有tag: #{latest_tag},无需重新打tag")
|
101
114
|
Funlog.instance.fancyinfo_success("仓库路径: #{project_dir}")
|
102
115
|
return
|
data/lib/pindo/command/dev.rb
CHANGED
@@ -3,10 +3,9 @@
|
|
3
3
|
|
4
4
|
require 'pindo/command/dev/tag'
|
5
5
|
require 'pindo/command/dev/debug'
|
6
|
-
require 'pindo/command/dev/autoresign'
|
7
6
|
require 'pindo/command/dev/autobuild'
|
8
7
|
require 'pindo/command/dev/build'
|
9
|
-
require 'pindo/command/dev/
|
8
|
+
require 'pindo/command/dev/repoinit'
|
10
9
|
|
11
10
|
|
12
11
|
module Pindo
|