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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 465c3b05af7e8d11f5fd4b439052fa3dbe29f4e3bc8c16e1299d19fb7dc278e7
4
- data.tar.gz: 4c3dd3ef7d60511a00bb9fc57df5ff35e40b9faf3686e1c4d4f131d6d6aefd34
3
+ metadata.gz: 8cfd06e937c68ec8fd6c665ac2060fd3a460b1a5a745d87a7644f0a543e1fffe
4
+ data.tar.gz: a2011617a26f2e28b5b45f178fd1c4335b68b0b5035af2a780273933e8828a52
5
5
  SHA512:
6
- metadata.gz: 78ca01d716329db426c40ff7103b03ebee3cbb4b09b9c8467ccd822cc60de4a48b4b9473516cbdfcd3bee824963425b1104669fa82ed5b94d1ae991643edc5c6
7
- data.tar.gz: cdc919b196b24c97040c8cde8118a09aeae0f27be69cc8d2e5e07ff73f5c062aea70469e82c5a288e793ba700ae5b083415c23be10354f8eff5476a5a30eec12
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 "--build"
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
- puts "\n》》》》》正在将本地调试仓替换为远程仓 》》》》》》》》》》\n".green
36
- active_repo_names = replace_local_to_remote
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
- puts "\n》》》》》正在将远程仓复原为本地调试仓 》》》》》》》》》》\n".green
42
- reset_remote_to_local(active_repo_names)
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 = '4f5379d0d26b9a2ef167b3fc84fb47f1fe2b4e87b1f95d8f5fc15269132051ef'
12
+ ACCESS_TOKEN = 'bdbda2cc022951235808a4f6c7a7330d4de7dcf719650d7d2ceee260e07d3f01'
13
13
  Project_AirBrush = '546ed49bfca9d3a4f51ccf2c8c279d0f'
14
14
  Project_AirBrush_Video = 'fcb3e858aa1d991e8c21222f3696ce67'
15
15
 
data/lib/pixab/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Pixab
4
- VERSION = "1.2.1"
4
+ VERSION = "1.2.2"
5
5
  end
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.1
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-01-13 00:00:00.000000000 Z
11
+ date: 2023-02-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: colored2