pixab 1.2.1 → 1.2.2
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/ComponentSynchronizer.rb +19 -6
- data/lib/Localization.rb +1 -1
- data/lib/pixab/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8cfd06e937c68ec8fd6c665ac2060fd3a460b1a5a745d87a7644f0a543e1fffe
|
4
|
+
data.tar.gz: a2011617a26f2e28b5b45f178fd1c4335b68b0b5035af2a780273933e8828a52
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 398e2af51db09f877e1a5110bd0164ab1293831fb9d903c2201e4498fd57a4a1866e46d5e6de8a6a821080e5fbe96c7da926b44ff08400f8a74286681620adfd
|
7
|
+
data.tar.gz: 9d071439c49927a78a09a4b498b71d2252656f5fae0093f50055ed481e485b826ad2239d845e0199d26bad7fa1f86bc510928dd9deb324203a4f4019dd39d4cf
|
@@ -11,20 +11,23 @@ module Pixab
|
|
11
11
|
|
12
12
|
class ComponentSynchronizer
|
13
13
|
|
14
|
-
attr_accessor :is_need_build
|
14
|
+
attr_accessor :is_need_build, :is_need_remote_repo
|
15
15
|
attr_reader :repo_manager, :repos, :main_repo_name, :updated_repo_names
|
16
16
|
|
17
17
|
def initialize(repo_manager = RepoManager.new, commands = nil)
|
18
18
|
@repo_manager = repo_manager
|
19
19
|
@is_need_build = false
|
20
|
+
@is_need_remote_repo = false
|
20
21
|
if commands.nil?
|
21
22
|
return
|
22
23
|
end
|
23
24
|
commands.each_index do |index|
|
24
25
|
command = commands[index]
|
25
26
|
case command
|
26
|
-
when
|
27
|
+
when "--build"
|
27
28
|
@is_need_build = true
|
29
|
+
when "--remote-repo"
|
30
|
+
@is_need_remote_repo = true
|
28
31
|
else
|
29
32
|
end
|
30
33
|
end
|
@@ -32,14 +35,24 @@ module Pixab
|
|
32
35
|
|
33
36
|
def run
|
34
37
|
read_repo_infos
|
35
|
-
|
36
|
-
active_repo_names =
|
38
|
+
|
39
|
+
active_repo_names = nil
|
40
|
+
if is_need_remote_repo
|
41
|
+
puts "\n》》》》》正在将本地调试仓替换为远程仓 》》》》》》》》》》\n".green
|
42
|
+
active_repo_names = replace_local_to_remote
|
43
|
+
end
|
44
|
+
|
37
45
|
puts "\n》》》》》正在合并主工程代码 》》》》》》》》》》》》》》》\n".green
|
38
46
|
merge_and_check
|
47
|
+
|
39
48
|
puts "\n》》》》》正在读取最新提交,并更新pod 》》》》》》》》》》\n".green
|
40
49
|
replace_podfile
|
41
|
-
|
42
|
-
|
50
|
+
|
51
|
+
if is_need_remote_repo
|
52
|
+
puts "\n》》》》》正在将远程仓复原为本地调试仓 》》》》》》》》》》\n".green
|
53
|
+
reset_remote_to_local(active_repo_names)
|
54
|
+
end
|
55
|
+
|
43
56
|
if is_need_build
|
44
57
|
puts "\n》》》》》正在进行Xcode编译 》》》》》》》》》》》》》》》\n".green
|
45
58
|
FileUtils.cd("#{repo_manager.root_path}/#{main_repo_name}")
|
data/lib/Localization.rb
CHANGED
@@ -9,7 +9,7 @@ module Pixab
|
|
9
9
|
|
10
10
|
class Localization
|
11
11
|
|
12
|
-
ACCESS_TOKEN = '
|
12
|
+
ACCESS_TOKEN = 'bdbda2cc022951235808a4f6c7a7330d4de7dcf719650d7d2ceee260e07d3f01'
|
13
13
|
Project_AirBrush = '546ed49bfca9d3a4f51ccf2c8c279d0f'
|
14
14
|
Project_AirBrush_Video = 'fcb3e858aa1d991e8c21222f3696ce67'
|
15
15
|
|
data/lib/pixab/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pixab
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.2.
|
4
|
+
version: 1.2.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 廖再润
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-02-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored2
|