cocoapods-bb-PodAssistant 0.2.6 → 0.3.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:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 35d02b24a30633e891421f088d9fe05c17585e9b6db05f0c337a9468b980adf5
|
|
4
|
+
data.tar.gz: 4c7ac41d4a5f98ab346dfa587a686f079af075ef434df61e5441597f84f265f7
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 58d31747fb116514f4520aacf1b730d0503d7e5ca3ca136772488519871ae667dad4200fb05ae65938378e8c47268e86fad32275b794bea660a65227836eee8b
|
|
7
|
+
data.tar.gz: 32b9d36bf4238aaf709dc6bdad0feded1ba5845270d42089d6cae5490120a99a1695c755b4edffdf10c9b4b1f96f187dc6eaaa1f70320e3d4b19a9133ceb9e17
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
module Pod
|
|
2
|
+
class Config
|
|
3
|
+
attr_accessor :bb_idfa_flag
|
|
4
|
+
end
|
|
5
|
+
end
|
|
6
|
+
|
|
7
|
+
module Pod
|
|
8
|
+
class Installer
|
|
9
|
+
class Analyzer
|
|
10
|
+
class PodfileDependencyCache
|
|
11
|
+
alias_method :bb_origin_initialize, :initialize
|
|
12
|
+
def initialize(podfile_dependencies, dependencies_by_target_definition)
|
|
13
|
+
bb_origin_initialize(podfile_dependencies,dependencies_by_target_definition)
|
|
14
|
+
|
|
15
|
+
if @podfile_dependencies
|
|
16
|
+
@podfile_dependencies.each do |dep|
|
|
17
|
+
if dep.name.include?('/noidfa')
|
|
18
|
+
Pod::Config.instance.bb_idfa_flag = 'noidfa'
|
|
19
|
+
break
|
|
20
|
+
elsif dep.name.include?('/idfa')
|
|
21
|
+
Pod::Config.instance.bb_idfa_flag = 'idfa'
|
|
22
|
+
break
|
|
23
|
+
end
|
|
24
|
+
end
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
28
|
+
end
|
|
29
|
+
end
|
|
30
|
+
end
|
|
31
|
+
|
|
32
|
+
|
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.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- humin
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2024-01-24 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: cocoapods-core
|
|
@@ -90,6 +90,7 @@ files:
|
|
|
90
90
|
- LICENSE.txt
|
|
91
91
|
- README.md
|
|
92
92
|
- lib/cocoapods-bb-PodAssistant.rb
|
|
93
|
+
- lib/cocoapods-bb-PodAssistant/babybus/bbsadvert/podfile_dependency_cache.rb
|
|
93
94
|
- lib/cocoapods-bb-PodAssistant/babybus/business/babybus_install_environment.rb
|
|
94
95
|
- lib/cocoapods-bb-PodAssistant/babybus/helpers/babybus_info_plist_helper.rb
|
|
95
96
|
- lib/cocoapods-bb-PodAssistant/babybus/installer/post_install_hooks.rb
|
|
@@ -142,7 +143,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
142
143
|
- !ruby/object:Gem::Version
|
|
143
144
|
version: '0'
|
|
144
145
|
requirements: []
|
|
145
|
-
rubygems_version: 3.4.
|
|
146
|
+
rubygems_version: 3.4.21
|
|
146
147
|
signing_key:
|
|
147
148
|
specification_version: 4
|
|
148
149
|
summary: A longer description of cocoapods-bb-PodAssistant.
|