pixab 2.3.4 → 2.5.0
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/Gemfile.lock +47 -0
- data/exe/pixab +7 -7
- data/lib/Utilities/FileMode.rb +21 -0
- data/lib/Utilities/UserInfo.rb +2 -2
- data/lib/{Utilities.rb → Utilities/Utilities.rb} +2 -2
- data/lib/feature/FeatureCopy.rb +1 -1
- data/lib/feature/FeatureStart.rb +1 -1
- data/lib/{GitUtils.rb → git/GitUtils.rb} +1 -1
- data/lib/gitlab/GitRepoInfo.rb +1 -1
- data/lib/gitlab/GitlabMRManager.rb +2 -2
- data/lib/{LocalizationPlatform.rb → localization/phrase/LocalizationPlatform.rb} +1 -1
- data/lib/{LocalizationSmartcat.rb → localization/smartcat/LocalizationSmartcat.rb} +29 -5
- data/lib/localization/smartcat/SmartcatBatch.rb +29 -0
- data/lib/localization/smartcat/SmartcatCollections.rb +48 -0
- data/lib/mbox/MboxAdd.rb +2 -2
- data/lib/pixab/version.rb +1 -1
- data/lib/{ComponentSynchronizer.rb → projects/ComponentSynchronizer.rb} +38 -15
- data/lib/{MergeRequest.rb → projects/MergeRequest.rb} +2 -2
- data/lib/{Package.rb → projects/Package.rb} +1 -1
- data/pixab.gemspec +1 -0
- metadata +33 -15
- /data/lib/{Platform.rb → Utilities/Platform.rb} +0 -0
- /data/lib/{Localization.rb → localization/phrase/Localization.rb} +0 -0
- /data/lib/{LocalizationSmartcatImport.rb → localization/smartcat/LocalizationSmartcatImport.rb} +0 -0
- /data/lib/{LocalizationSmartcatInfo.rb → localization/smartcat/LocalizationSmartcatInfo.rb} +0 -0
- /data/lib/{LocalizationSmartcatMerge.rb → localization/smartcat/LocalizationSmartcatMerge.rb} +0 -0
- /data/lib/{RepoManager.rb → projects/RepoManager.rb} +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 65ac3034471869b3d54c91cb78037e992a5afa7e14c04a778d19de6a8550da2a
|
4
|
+
data.tar.gz: cae519a48fd8ad1abd49f4787895c6d9b37cdf9d06fb22516e3b6f7c30a1e247
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 22e700b31c5ba8f69ff5c353dc8758629d9e4e0a38c149899a07aad127f5f9e8a3b5941491b0715687cbce4fc06b515acaf40383f5bc1b927a543ebbba4352d3
|
7
|
+
data.tar.gz: a8931cca6d82419583204f6ebf7aae5415e2cd2d4f61f926be3c515258c11d2d34d076f01a16c043389409dc60d338ec76c70d22f6196e833f4a59fcc0cbcc22
|
data/Gemfile.lock
ADDED
@@ -0,0 +1,47 @@
|
|
1
|
+
PATH
|
2
|
+
remote: .
|
3
|
+
specs:
|
4
|
+
pixab (2.4.0)
|
5
|
+
colored2
|
6
|
+
nokogiri
|
7
|
+
rest-client
|
8
|
+
ruby-progressbar
|
9
|
+
rubyzip
|
10
|
+
yaml
|
11
|
+
|
12
|
+
GEM
|
13
|
+
remote: https://rubygems.org/
|
14
|
+
specs:
|
15
|
+
colored2 (3.1.2)
|
16
|
+
domain_name (0.6.20240107)
|
17
|
+
http-accept (1.7.0)
|
18
|
+
http-cookie (1.0.8)
|
19
|
+
domain_name (~> 0.5)
|
20
|
+
logger (1.6.6)
|
21
|
+
mime-types (3.6.0)
|
22
|
+
logger
|
23
|
+
mime-types-data (~> 3.2015)
|
24
|
+
mime-types-data (3.2025.0304)
|
25
|
+
netrc (0.11.0)
|
26
|
+
nokogiri (1.15.7-x86_64-darwin)
|
27
|
+
racc (~> 1.4)
|
28
|
+
racc (1.8.1)
|
29
|
+
rake (13.2.1)
|
30
|
+
rest-client (2.1.0)
|
31
|
+
http-accept (>= 1.7.0, < 2.0)
|
32
|
+
http-cookie (>= 1.0.2, < 2.0)
|
33
|
+
mime-types (>= 1.16, < 4.0)
|
34
|
+
netrc (~> 0.8)
|
35
|
+
ruby-progressbar (1.13.0)
|
36
|
+
rubyzip (2.4.1)
|
37
|
+
yaml (0.4.0)
|
38
|
+
|
39
|
+
PLATFORMS
|
40
|
+
x86_64-darwin-19
|
41
|
+
|
42
|
+
DEPENDENCIES
|
43
|
+
pixab!
|
44
|
+
rake (~> 13.0)
|
45
|
+
|
46
|
+
BUNDLED WITH
|
47
|
+
2.3.22
|
data/exe/pixab
CHANGED
@@ -3,13 +3,13 @@
|
|
3
3
|
# encoding: UTF-8
|
4
4
|
|
5
5
|
require_relative "../lib/pixab/version"
|
6
|
-
require_relative '../lib/MergeRequest.rb'
|
7
|
-
require_relative '../lib/ComponentSynchronizer.rb'
|
8
|
-
require_relative '../lib/
|
9
|
-
require_relative '../lib/
|
10
|
-
require_relative '../lib/LocalizationSmartcat.rb'
|
11
|
-
require_relative '../lib/LocalizationSmartcatImport.rb'
|
12
|
-
require_relative '../lib/LocalizationSmartcatMerge.rb'
|
6
|
+
require_relative '../lib/projects/MergeRequest.rb'
|
7
|
+
require_relative '../lib/projects/ComponentSynchronizer.rb'
|
8
|
+
require_relative '../lib/projects/Package.rb'
|
9
|
+
require_relative '../lib/localization/phrase/Localization.rb'
|
10
|
+
require_relative '../lib/localization/smartcat/LocalizationSmartcat.rb'
|
11
|
+
require_relative '../lib/localization/smartcat/LocalizationSmartcatImport.rb'
|
12
|
+
require_relative '../lib/localization/smartcat/LocalizationSmartcatMerge.rb'
|
13
13
|
require_relative '../lib/mbox/Mbox.rb'
|
14
14
|
require_relative '../lib/gitlab/GitlabMRManager.rb'
|
15
15
|
require_relative '../lib/feature/Feature.rb'
|
data/lib/Utilities/UserInfo.rb
CHANGED
@@ -36,14 +36,14 @@ module Pixab
|
|
36
36
|
end
|
37
37
|
|
38
38
|
def display_default_dialog(default_text)
|
39
|
-
input_msg = `osascript -e 'display dialog "#{default_text}"'`.chomp
|
39
|
+
input_msg = `osascript -e 'display dialog "#{default_text}"' 2>/dev/null`.chomp
|
40
40
|
reg = /button returned:(.+)/
|
41
41
|
input_msg.match(reg)
|
42
42
|
!$1.nil?
|
43
43
|
end
|
44
44
|
|
45
45
|
def display_dialog(default_text, default_answer = "")
|
46
|
-
input_msg = `osascript -e 'display dialog "#{default_text}" default answer "#{default_answer}"'`.chomp
|
46
|
+
input_msg = `osascript -e 'display dialog "#{default_text}" default answer "#{default_answer}"' 2>/dev/null`.chomp
|
47
47
|
reg = /text returned:(.+)/
|
48
48
|
input_msg.match(reg)
|
49
49
|
$1.nil? ? "" : $1
|
data/lib/feature/FeatureCopy.rb
CHANGED
data/lib/feature/FeatureStart.rb
CHANGED
data/lib/gitlab/GitRepoInfo.rb
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
require 'colored2'
|
2
|
-
require_relative '../Platform.rb'
|
2
|
+
require_relative '../Utilities/Platform.rb'
|
3
3
|
require_relative './GitlabInfo.rb'
|
4
|
-
require_relative '../Utilities.rb'
|
4
|
+
require_relative '../Utilities/Utilities.rb'
|
5
5
|
require_relative './GitlabMR.rb'
|
6
6
|
require_relative '../Utilities/UserInfo.rb'
|
7
7
|
|
@@ -4,6 +4,7 @@ require 'zip'
|
|
4
4
|
require 'colored2'
|
5
5
|
require 'nokogiri'
|
6
6
|
require_relative './LocalizationSmartcatInfo.rb'
|
7
|
+
require_relative '../../Utilities/FileMode.rb'
|
7
8
|
|
8
9
|
module Pixab
|
9
10
|
|
@@ -16,6 +17,7 @@ module Pixab
|
|
16
17
|
def initialize()
|
17
18
|
@projects = LocalizationSmartcatInfo::Project_AirBrush
|
18
19
|
@collections = 'main'
|
20
|
+
@file_mode = FileMode.new('w')
|
19
21
|
end
|
20
22
|
|
21
23
|
def run(commands = nil)
|
@@ -60,6 +62,8 @@ module Pixab
|
|
60
62
|
@format = commands[index + 1]
|
61
63
|
when '--output'
|
62
64
|
@output = commands[index + 1]
|
65
|
+
when '--mode'
|
66
|
+
@file_mode = FileMode.new(commands[index + 1])
|
63
67
|
end
|
64
68
|
end
|
65
69
|
|
@@ -67,14 +71,13 @@ module Pixab
|
|
67
71
|
export_params = generate_export_params
|
68
72
|
download_url = 'https://smartcat.com/api/integration/v1/document/export'
|
69
73
|
|
70
|
-
puts "\n
|
74
|
+
puts "\n🚀 正在导出#{@collections}文案...".green
|
71
75
|
export_id = fetch_export_id(export_url, export_params)
|
72
76
|
export_id = export_id.tr('"','')
|
73
|
-
puts "\n
|
77
|
+
puts "\n📥 正在下载#{@collections}文案...".green
|
74
78
|
if download_zip_file_with_retry(download_url, export_id)
|
75
|
-
puts "\n》》》》》正在替换本地化文案 》》》》》》》》》》\n".green
|
76
79
|
unzip_file(Localization_FILE_NAME)
|
77
|
-
puts "\n
|
80
|
+
puts "\n✅ #{@collections}文案更新已完成!".green
|
78
81
|
end
|
79
82
|
|
80
83
|
end
|
@@ -161,7 +164,12 @@ module Pixab
|
|
161
164
|
match.gsub('%s', '%@')
|
162
165
|
end
|
163
166
|
end
|
164
|
-
|
167
|
+
|
168
|
+
if @file_mode.is_replace
|
169
|
+
File.write(f_path, content)
|
170
|
+
else
|
171
|
+
File.write(f_path, content, mode: @file_mode.mode)
|
172
|
+
end
|
165
173
|
end
|
166
174
|
end
|
167
175
|
|
@@ -179,10 +187,26 @@ module Pixab
|
|
179
187
|
node.content = node.content.gsub(/['"]/, '\\\\\0')
|
180
188
|
end
|
181
189
|
end
|
190
|
+
|
191
|
+
if @file_mode.is_add
|
192
|
+
document = merge_xml_content(document, f_path)
|
193
|
+
end
|
194
|
+
|
182
195
|
File.write(f_path, document.to_xml)
|
183
196
|
end
|
184
197
|
end
|
185
198
|
|
199
|
+
def merge_xml_content(new_document, file_path)
|
200
|
+
return new_document unless File.exist?(file_path)
|
201
|
+
|
202
|
+
old_document = Nokogiri::XML(File.read(file_path))
|
203
|
+
new_document.root.children.each do |node|
|
204
|
+
old_document.root.add_child(node)
|
205
|
+
end
|
206
|
+
|
207
|
+
return old_document
|
208
|
+
end
|
209
|
+
|
186
210
|
def generate_export_params()
|
187
211
|
|
188
212
|
export_params = {
|
@@ -0,0 +1,29 @@
|
|
1
|
+
require 'colored2'
|
2
|
+
require_relative './SmartcatCollections.rb'
|
3
|
+
require_relative './LocalizationSmartcat.rb'
|
4
|
+
|
5
|
+
module Pixab
|
6
|
+
|
7
|
+
class SmartcatBatch
|
8
|
+
|
9
|
+
def run(commands = nil)
|
10
|
+
collections = Pixab::SmartcatCollections.collections
|
11
|
+
if collections.nil?
|
12
|
+
puts "Collections为空".red
|
13
|
+
return
|
14
|
+
end
|
15
|
+
|
16
|
+
smartcat = Pixab::LocalizationSmartcat.new
|
17
|
+
new_commands = commands.nil? ? [] : commands
|
18
|
+
collections.each_with_index do |collection, index|
|
19
|
+
new_commands.push('--collections', collection)
|
20
|
+
if index > 0
|
21
|
+
new_commands.push('--mode', 'a')
|
22
|
+
end
|
23
|
+
smartcat.run(new_commands)
|
24
|
+
end
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
@@ -0,0 +1,48 @@
|
|
1
|
+
require 'net/http'
|
2
|
+
require 'uri'
|
3
|
+
require 'json'
|
4
|
+
require 'colored2'
|
5
|
+
require_relative './LocalizationSmartcatInfo.rb'
|
6
|
+
|
7
|
+
module Pixab
|
8
|
+
|
9
|
+
class SmartcatCollections
|
10
|
+
|
11
|
+
def self.collections
|
12
|
+
# 构建 URI
|
13
|
+
uri = URI.parse("https://smartcat.com/api/integration/v1/project/#{LocalizationSmartcatInfo::Project_AirBrush}")
|
14
|
+
|
15
|
+
# 创建 HTTP 请求
|
16
|
+
request = Net::HTTP::Get.new(uri)
|
17
|
+
request.basic_auth(LocalizationSmartcatInfo::USERNAME, LocalizationSmartcatInfo::PASSWORD)
|
18
|
+
request['Content-Type'] = 'application/json'
|
19
|
+
|
20
|
+
# 发送请求
|
21
|
+
response = Net::HTTP.start(uri.hostname, uri.port, use_ssl: true) do |http|
|
22
|
+
http.request(request)
|
23
|
+
end
|
24
|
+
|
25
|
+
# 处理响应
|
26
|
+
if response.code.to_i == 200
|
27
|
+
project_info = JSON.parse(response.body)
|
28
|
+
if project_info.nil?
|
29
|
+
puts "请求失败,响应为空".red
|
30
|
+
return
|
31
|
+
end
|
32
|
+
|
33
|
+
documents = project_info["documents"]
|
34
|
+
if documents.nil?
|
35
|
+
puts "请求失败,documents为空".red
|
36
|
+
return
|
37
|
+
end
|
38
|
+
|
39
|
+
collections = documents.map { |document| document['name'] }.uniq
|
40
|
+
else
|
41
|
+
puts "请求失败,状态码: #{response.code}, 响应: #{response.body}".red
|
42
|
+
end
|
43
|
+
|
44
|
+
end
|
45
|
+
|
46
|
+
end
|
47
|
+
|
48
|
+
end
|
data/lib/mbox/MboxAdd.rb
CHANGED
data/lib/pixab/version.rb
CHANGED
@@ -4,7 +4,8 @@
|
|
4
4
|
require "fileutils"
|
5
5
|
require 'colored2'
|
6
6
|
require 'open3'
|
7
|
-
|
7
|
+
require 'ruby-progressbar'
|
8
|
+
require_relative '../git/GitUtils.rb'
|
8
9
|
require_relative './RepoManager.rb'
|
9
10
|
|
10
11
|
module Pixab
|
@@ -18,7 +19,7 @@ module Pixab
|
|
18
19
|
@repo_manager = repo_manager
|
19
20
|
@is_need_build = false
|
20
21
|
@is_need_remote_repo = false
|
21
|
-
@is_need_pod_install =
|
22
|
+
@is_need_pod_install = false
|
22
23
|
@is_use__target_branch = true
|
23
24
|
|
24
25
|
if commands.nil?
|
@@ -33,6 +34,8 @@ module Pixab
|
|
33
34
|
@is_need_remote_repo = true
|
34
35
|
when "--no-pod-install"
|
35
36
|
@is_need_pod_install = false
|
37
|
+
when "--pod-install"
|
38
|
+
@is_need_pod_install = true
|
36
39
|
when "--current-branch"
|
37
40
|
@is_use__target_branch = false
|
38
41
|
else
|
@@ -46,23 +49,28 @@ module Pixab
|
|
46
49
|
|
47
50
|
active_repo_names = nil
|
48
51
|
if is_need_remote_repo
|
49
|
-
puts "\n
|
52
|
+
puts "\n⤴️ 正在将本地调试仓替换为远程仓\n".green
|
50
53
|
active_repo_names = replace_local_to_remote
|
51
54
|
end
|
52
55
|
|
53
|
-
puts "\n
|
56
|
+
puts "\n🔀 正在合并主工程代码".green
|
54
57
|
merge_and_check
|
55
58
|
|
56
|
-
puts "\n
|
59
|
+
puts "\n📥 正在读取最新提交".green
|
57
60
|
replace_podfile
|
58
61
|
|
62
|
+
if is_need_pod_install
|
63
|
+
puts "\n📦 正在执行pod install\n".green
|
64
|
+
pod_install
|
65
|
+
end
|
66
|
+
|
59
67
|
if is_need_remote_repo
|
60
|
-
puts "\n
|
68
|
+
puts "\n⤵️ 正在将远程仓复原为本地调试仓\n".green
|
61
69
|
reset_remote_to_local(active_repo_names)
|
62
70
|
end
|
63
71
|
|
64
72
|
if is_need_build
|
65
|
-
puts "\n
|
73
|
+
puts "\n🛠️ 正在进行Xcode编译\n".green
|
66
74
|
FileUtils.cd("#{repo_manager.root_path}/#{main_repo_name}")
|
67
75
|
build
|
68
76
|
end
|
@@ -122,6 +130,12 @@ module Pixab
|
|
122
130
|
|
123
131
|
# 替换主工程Podfile
|
124
132
|
def replace_podfile
|
133
|
+
progressbar = ProgressBar.create(
|
134
|
+
total: repos.length,
|
135
|
+
format: '%t |%B| %p%%',
|
136
|
+
length: 50
|
137
|
+
)
|
138
|
+
|
125
139
|
# 获取每个子库最新的commit id
|
126
140
|
repo_commite_id = {}
|
127
141
|
repos.each do |repo|
|
@@ -129,15 +143,23 @@ module Pixab
|
|
129
143
|
|
130
144
|
FileUtils.cd("#{repo_manager.root_path}/#{repo_name}")
|
131
145
|
repo_target_branch = @is_use__target_branch ? repo_target_branch = repo["target_branch"] : GitUtils.current_branch
|
132
|
-
|
146
|
+
unless GitUtils.check_remote_branch_exists_fast("origin/#{repo_target_branch}")
|
147
|
+
progressbar.increment
|
148
|
+
next
|
149
|
+
end
|
133
150
|
|
134
|
-
stdout, status = Open3.capture2("git fetch origin #{repo_target_branch}")
|
135
|
-
|
151
|
+
stdout, status = Open3.capture2("git fetch origin #{repo_target_branch} --quiet")
|
152
|
+
unless status.success?
|
153
|
+
progressbar.increment
|
154
|
+
break
|
155
|
+
end
|
136
156
|
|
137
157
|
commit_id = `git log origin/#{repo_target_branch} -n 1 --pretty=format:"%H"`
|
138
158
|
if !commit_id.nil?
|
139
159
|
repo_commite_id[repo_name] = commit_id
|
140
160
|
end
|
161
|
+
|
162
|
+
progressbar.increment
|
141
163
|
end
|
142
164
|
|
143
165
|
podfile_path = "#{repo_manager.root_path}/#{main_repo_name}/AirBrushPodfiles/pix_ab_component.rb"
|
@@ -158,13 +180,14 @@ module Pixab
|
|
158
180
|
end
|
159
181
|
end
|
160
182
|
|
161
|
-
if is_need_pod_install
|
162
|
-
system "mbox pod install --repo-update"
|
163
|
-
Utilities.check_shell_result("Error: execute `mbox pod install --repo-update` failed")
|
164
|
-
end
|
165
|
-
|
166
183
|
@updated_repo_names = updated_repo_names
|
167
184
|
end
|
185
|
+
|
186
|
+
# 执行 pod install
|
187
|
+
def pod_install
|
188
|
+
system "mbox pod install --repo-update"
|
189
|
+
Utilities.check_shell_result("Error: execute `mbox pod install --repo-update` failed")
|
190
|
+
end
|
168
191
|
|
169
192
|
# 编译
|
170
193
|
def build
|
@@ -3,9 +3,9 @@
|
|
3
3
|
|
4
4
|
require "fileutils"
|
5
5
|
require 'colored2'
|
6
|
-
require_relative '
|
6
|
+
require_relative '../Utilities/Utilities.rb'
|
7
7
|
require_relative './RepoManager.rb'
|
8
|
-
require_relative '
|
8
|
+
require_relative '../git/GitUtils.rb'
|
9
9
|
|
10
10
|
module Pixab
|
11
11
|
|
data/pixab.gemspec
CHANGED
@@ -38,6 +38,7 @@ Gem::Specification.new do |spec|
|
|
38
38
|
spec.add_dependency 'nokogiri'
|
39
39
|
spec.add_dependency 'rest-client'
|
40
40
|
spec.add_dependency 'yaml'
|
41
|
+
spec.add_dependency 'ruby-progressbar'
|
41
42
|
|
42
43
|
# For more information and examples about making a new gem, check out our
|
43
44
|
# guide at: https://bundler.io/guides/creating_gem.html
|
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: 2.
|
4
|
+
version: 2.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- 廖再润
|
8
8
|
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-03-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: colored2
|
@@ -80,6 +80,20 @@ dependencies:
|
|
80
80
|
- - ">="
|
81
81
|
- !ruby/object:Gem::Version
|
82
82
|
version: '0'
|
83
|
+
- !ruby/object:Gem::Dependency
|
84
|
+
name: ruby-progressbar
|
85
|
+
requirement: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '0'
|
90
|
+
type: :runtime
|
91
|
+
prerelease: false
|
92
|
+
version_requirements: !ruby/object:Gem::Requirement
|
93
|
+
requirements:
|
94
|
+
- - ">="
|
95
|
+
- !ruby/object:Gem::Version
|
96
|
+
version: '0'
|
83
97
|
description: Write a longer description or delete this line.
|
84
98
|
email:
|
85
99
|
- lzr3@us.meitu.com
|
@@ -91,38 +105,42 @@ files:
|
|
91
105
|
- CHANGELOG.md
|
92
106
|
- CODE_OF_CONDUCT.md
|
93
107
|
- Gemfile
|
108
|
+
- Gemfile.lock
|
94
109
|
- LICENSE.txt
|
95
110
|
- README.md
|
96
111
|
- Rakefile
|
97
112
|
- exe/pixab
|
98
|
-
- lib/
|
99
|
-
- lib/
|
100
|
-
- lib/Localization.rb
|
101
|
-
- lib/LocalizationPlatform.rb
|
102
|
-
- lib/LocalizationSmartcat.rb
|
103
|
-
- lib/LocalizationSmartcatImport.rb
|
104
|
-
- lib/LocalizationSmartcatInfo.rb
|
105
|
-
- lib/LocalizationSmartcatMerge.rb
|
106
|
-
- lib/MergeRequest.rb
|
107
|
-
- lib/Package.rb
|
108
|
-
- lib/Platform.rb
|
109
|
-
- lib/RepoManager.rb
|
110
|
-
- lib/Utilities.rb
|
113
|
+
- lib/Utilities/FileMode.rb
|
114
|
+
- lib/Utilities/Platform.rb
|
111
115
|
- lib/Utilities/UserInfo.rb
|
116
|
+
- lib/Utilities/Utilities.rb
|
112
117
|
- lib/feature/Feature.rb
|
113
118
|
- lib/feature/FeatureCopy.rb
|
114
119
|
- lib/feature/FeatureStart.rb
|
115
120
|
- lib/git/Git.rb
|
121
|
+
- lib/git/GitUtils.rb
|
116
122
|
- lib/gitlab/GitRepoInfo.rb
|
117
123
|
- lib/gitlab/GitlabInfo.rb
|
118
124
|
- lib/gitlab/GitlabMR.rb
|
119
125
|
- lib/gitlab/GitlabMRManager.rb
|
126
|
+
- lib/localization/phrase/Localization.rb
|
127
|
+
- lib/localization/phrase/LocalizationPlatform.rb
|
128
|
+
- lib/localization/smartcat/LocalizationSmartcat.rb
|
129
|
+
- lib/localization/smartcat/LocalizationSmartcatImport.rb
|
130
|
+
- lib/localization/smartcat/LocalizationSmartcatInfo.rb
|
131
|
+
- lib/localization/smartcat/LocalizationSmartcatMerge.rb
|
132
|
+
- lib/localization/smartcat/SmartcatBatch.rb
|
133
|
+
- lib/localization/smartcat/SmartcatCollections.rb
|
120
134
|
- lib/mbox/AirBrushProjectInfo.rb
|
121
135
|
- lib/mbox/Mbox.rb
|
122
136
|
- lib/mbox/MboxAdd.rb
|
123
137
|
- lib/mbox/MboxRemove.rb
|
124
138
|
- lib/pixab.rb
|
125
139
|
- lib/pixab/version.rb
|
140
|
+
- lib/projects/ComponentSynchronizer.rb
|
141
|
+
- lib/projects/MergeRequest.rb
|
142
|
+
- lib/projects/Package.rb
|
143
|
+
- lib/projects/RepoManager.rb
|
126
144
|
- pixab.gemspec
|
127
145
|
- sig/pixab.rbs
|
128
146
|
homepage: https://github.com/LZRun
|
File without changes
|
File without changes
|
/data/lib/{LocalizationSmartcatImport.rb → localization/smartcat/LocalizationSmartcatImport.rb}
RENAMED
File without changes
|
File without changes
|
/data/lib/{LocalizationSmartcatMerge.rb → localization/smartcat/LocalizationSmartcatMerge.rb}
RENAMED
File without changes
|
File without changes
|