cocoapods-bb-PodAssistant 0.3.4.3 β†’ 0.3.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: d0ca45d7ccff88bdc005a64e976843df6dca731391930454f316eba4273d5e04
4
- data.tar.gz: b2ef42b1321c8d5d7f5747e937108288876486667060788d2a04d1851d9ed358
3
+ metadata.gz: 608e72a139590daf2b4bcade1f5c0adb6629b0b11460db92591524ff8ce7c96a
4
+ data.tar.gz: 60af78eaba2c05a76e16c0247827a95b42bb69cc6d5182257ff0d988762fad68
5
5
  SHA512:
6
- metadata.gz: a40f83e76e30726cee9e85dd91414619525c0dc9d2de959a6aee7659ed42e59dd3e6bdfc3284c75212a2c36182a3fde5c344c23ff58f46eda97f82e5d33a30b4
7
- data.tar.gz: a88f5cf15ad866c27ae165077ec4ca7784392dae05023f1e419384167406e56ead6b3b7a88b4a54f9c2a1949a06d7caed60ede7f943bebf3f08b8f3c6d80a371
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()
@@ -1,3 +1,3 @@
1
1
  module CocoapodsBbPodassistant
2
- VERSION = "0.3.4.3"
2
+ VERSION = "0.3.5.0"
3
3
  end
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.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-06-20 00:00:00.000000000 Z
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.9
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.