cocoapods-bb-PodAssistant 0.3.4.3 β 0.3.5.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 608e72a139590daf2b4bcade1f5c0adb6629b0b11460db92591524ff8ce7c96a
|
4
|
+
data.tar.gz: 60af78eaba2c05a76e16c0247827a95b42bb69cc6d5182257ff0d988762fad68
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe587d944e2623d4256911f662895a883d0597ddb24894fafa465ff510c6b9d06b8a1e60392d813bfb1126e0dd41b5aa0f2134cf593a7e6c88e5c98eaa4919fc
|
7
|
+
data.tar.gz: 63072e13be7d3a9febca4a01f03022b5d1b26c5cae91dfc6e9d2478d5b26d973160ebca186e25db0b7d593f882da187fc79977dbf0b914d41a0202310d2fa007
|
data/bin/match_decrypt
ADDED
@@ -0,0 +1,43 @@
|
|
1
|
+
#!/usr/bin/env ruby
|
2
|
+
require 'fastlane'
|
3
|
+
require 'match'
|
4
|
+
# CLI to decrypt files using fastlane match encryption layer
|
5
|
+
|
6
|
+
def usage
|
7
|
+
puts("USAGE: ruby math_decrypt.rb [password] [input_path] [output_path]")
|
8
|
+
exit(-1)
|
9
|
+
end
|
10
|
+
|
11
|
+
if ARGV.count < 2 || ARGV.count > 3
|
12
|
+
usage
|
13
|
+
end
|
14
|
+
|
15
|
+
method_name = 'decrypt'
|
16
|
+
password = ARGV.shift
|
17
|
+
input_file = ARGV.shift
|
18
|
+
|
19
|
+
if ARGV.count > 0
|
20
|
+
output_file = ARGV.shift
|
21
|
+
else
|
22
|
+
output_file = input_file
|
23
|
+
end
|
24
|
+
|
25
|
+
unless File.exist?(input_file)
|
26
|
+
puts "input_file:#{input_file} doesn't exist".red
|
27
|
+
exit
|
28
|
+
end
|
29
|
+
exit if password.empty?
|
30
|
+
|
31
|
+
begin
|
32
|
+
puts "match Encryption method_name:#{method_name} password:#{password} input_file:#{input_file} output_file:#{output_file}"
|
33
|
+
Match::Encryption::MatchFileEncryption.new.send(method_name, file_path: input_file, password: password, output_path: output_file)
|
34
|
+
puts "match decrypted mobileprovision finish!"
|
35
|
+
# if File.exist?(output_file)
|
36
|
+
# puts("Couldn't decrypted certificates repo")
|
37
|
+
# else
|
38
|
+
# puts("π Successfully decrypted certificates repo")
|
39
|
+
# end
|
40
|
+
rescue => e
|
41
|
+
puts("ERROR #{method_name}ing. [#{e}]. Check your password")
|
42
|
+
usage
|
43
|
+
end
|
@@ -120,6 +120,12 @@ def isCityApp
|
|
120
120
|
return bundleId === "com.sinyee.babybus.city"
|
121
121
|
end
|
122
122
|
|
123
|
+
# ζ―ε¦εζδΈηδΊ§ε
|
124
|
+
def isGameWorldApp
|
125
|
+
bundleId = getProjectBundleIdentifier()
|
126
|
+
return bundleId === "com.sinyee.babybus.gameworld"
|
127
|
+
end
|
128
|
+
|
123
129
|
# ζ―ε¦η©ι΅δΊ§ε
|
124
130
|
def isMatrixApp
|
125
131
|
bundleId = getProjectBundleIdentifier()
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: cocoapods-bb-PodAssistant
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.3.
|
4
|
+
version: 0.3.5.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- humin
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-07-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cocoapods-core
|
@@ -83,12 +83,14 @@ dependencies:
|
|
83
83
|
description: A short description of cocoapods-bb-PodAssistant.
|
84
84
|
email:
|
85
85
|
- humin1102@126.com
|
86
|
-
executables:
|
86
|
+
executables:
|
87
|
+
- match_decrypt
|
87
88
|
extensions: []
|
88
89
|
extra_rdoc_files: []
|
89
90
|
files:
|
90
91
|
- LICENSE.txt
|
91
92
|
- README.md
|
93
|
+
- bin/match_decrypt
|
92
94
|
- lib/cocoapods-bb-PodAssistant.rb
|
93
95
|
- lib/cocoapods-bb-PodAssistant/babybus/bbsadvert/podfile_dependency_cache.rb
|
94
96
|
- lib/cocoapods-bb-PodAssistant/babybus/business/babybus_install_environment.rb
|
@@ -143,7 +145,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
143
145
|
- !ruby/object:Gem::Version
|
144
146
|
version: '0'
|
145
147
|
requirements: []
|
146
|
-
rubygems_version: 3.5.
|
148
|
+
rubygems_version: 3.5.13
|
147
149
|
signing_key:
|
148
150
|
specification_version: 4
|
149
151
|
summary: A longer description of cocoapods-bb-PodAssistant.
|