pindo 5.2.2 → 5.2.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/command/android/autobuild.rb +1 -1
- data/lib/pindo/command/ios/autobuild.rb +1 -1
- data/lib/pindo/command/ios/debug.rb +1 -1
- data/lib/pindo/command/unity/apk.rb +1 -1
- data/lib/pindo/command/unity/autobuild.rb +1 -1
- data/lib/pindo/command/unity/ipa.rb +1 -1
- data/lib/pindo/command/unity/web.rb +1 -1
- data/lib/pindo/command/web/autobuild.rb +1 -1
- data/lib/pindo/version.rb +1 -1
- 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: 235be197b7b9f5717b54477a778d7b27387ce4b12d72f3d4cf4bccb7f8267df3
|
4
|
+
data.tar.gz: 619ee059cd180a87cd699417f7a0b3021ee88223ca82565dad183edcbb2df5e7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 317f3cc6730620555bfe942315f75261cb91c52706820d65aa81ce76d1abb2ab0fd4861fe0392ed085a3567d4c3307cfd64bd64f3ded724efd776c9011ee3bcd
|
7
|
+
data.tar.gz: fd961b915306b88886c1ae987774da7fc535e55c54f9599221ce5e342ab14182177ea555895de3a9d2277864f28de78935075ee31b99552c7fbb4ab7384a7d2b
|
@@ -88,7 +88,7 @@ module Pindo
|
|
88
88
|
|
89
89
|
build_helper = Pindo::BuildHelper.share_instance
|
90
90
|
if @args_upload_flag
|
91
|
-
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir
|
91
|
+
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir)
|
92
92
|
if is_need_add_tag
|
93
93
|
Pindo::Command::Dev::Tag::run(tag_action_parms)
|
94
94
|
end
|
@@ -108,7 +108,7 @@ module Pindo
|
|
108
108
|
pindo_project_dir = Dir.pwd
|
109
109
|
build_helper = Pindo::BuildHelper.share_instance
|
110
110
|
if @args_upload_flag
|
111
|
-
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir
|
111
|
+
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir)
|
112
112
|
if is_need_add_tag
|
113
113
|
Pindo::Command::Dev::Tag::run(tag_action_parms)
|
114
114
|
end
|
@@ -220,7 +220,7 @@ module Pindo
|
|
220
220
|
#bundle id去除. 特殊字符串,保留全小写
|
221
221
|
bundleid_scheme_valeu = bundleid_scheme_name.gsub(/[^a-zA-Z0-9]/, '').downcase
|
222
222
|
|
223
|
-
if !bundleid_scheme_name.nil?
|
223
|
+
if !bundleid_scheme_name.nil? && !bundleid_scheme_name.empty? && !info_plist_dict["CFBundleURLTypes"].any? { |item| item["CFBundleURLName"] == bundleid_scheme_valeu }
|
224
224
|
item0 = {}
|
225
225
|
item0["CFBundleTypeRole"] = "Editor"
|
226
226
|
item0["CFBundleURLName"] = bundleid_scheme_valeu
|
@@ -78,7 +78,7 @@ module Pindo
|
|
78
78
|
end
|
79
79
|
build_helper = Pindo::BuildHelper.share_instance
|
80
80
|
if @args_upload_flag
|
81
|
-
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir
|
81
|
+
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir)
|
82
82
|
if is_need_add_tag
|
83
83
|
Pindo::Command::Dev::Tag::run(tag_action_parms)
|
84
84
|
end
|
@@ -78,7 +78,7 @@ module Pindo
|
|
78
78
|
|
79
79
|
if @args_upload_flag
|
80
80
|
build_helper = Pindo::BuildHelper.share_instance
|
81
|
-
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir
|
81
|
+
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir)
|
82
82
|
if is_need_add_tag
|
83
83
|
Pindo::Command::Dev::Tag::run(tag_action_parms)
|
84
84
|
end
|
@@ -88,7 +88,7 @@ module Pindo
|
|
88
88
|
|
89
89
|
build_helper = Pindo::BuildHelper.share_instance
|
90
90
|
if @args_upload_flag
|
91
|
-
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir
|
91
|
+
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir)
|
92
92
|
if is_need_add_tag
|
93
93
|
Pindo::Command::Dev::Tag::run(tag_action_parms)
|
94
94
|
end
|
@@ -87,7 +87,7 @@ module Pindo
|
|
87
87
|
|
88
88
|
if @args_upload_flag
|
89
89
|
build_helper = Pindo::BuildHelper.share_instance
|
90
|
-
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir
|
90
|
+
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir)
|
91
91
|
if is_need_add_tag
|
92
92
|
Pindo::Command::Dev::Tag::run(tag_action_parms)
|
93
93
|
end
|
@@ -110,7 +110,7 @@ module Pindo
|
|
110
110
|
build_helper = Pindo::BuildHelper.share_instance
|
111
111
|
|
112
112
|
if @args_upload_flag
|
113
|
-
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir
|
113
|
+
is_need_add_tag,tag_action_parms = build_helper.check_is_need_add_tag?(pindo_project_dir)
|
114
114
|
if is_need_add_tag
|
115
115
|
Pindo::Command::Dev::Tag::run(tag_action_parms)
|
116
116
|
end
|
data/lib/pindo/version.rb
CHANGED