cocoapods-mangle 1.1.3 → 1.1.5

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: e852ba4670b2db3827711eaccc61177305ab14acaf27e006d0d09e2ea08ac3ed
4
- data.tar.gz: 540ba4f370a671e4ce10f1a2afa1fe2b6be59aaad2cc3f34b13c205bcfaf4158
3
+ metadata.gz: 616eebbdd8a2609b8cbbf779e88ccb938d53f2bb3318a3708afb29a2305e5e45
4
+ data.tar.gz: dbe8aa5c2e762ca2fb24789cbe12a138e127392bdd5962b6325a62275bbd43a6
5
5
  SHA512:
6
- metadata.gz: 2d59891418a068ffcf043e9687a2f58552efae6cd802a1ef31d4d60910c176d7129e441220a6b8286ac1c699ce6090d2132878d2408a073362ed6de845b45bfc
7
- data.tar.gz: 907fefc610e8f9fd0aeb6bc051711c5e962cdfbb3f797d2d9ca29f28cb61a6a89672439b760e6a39a0fb7c2f95e555f29061e74b6ad8bde4417db362a28b9388
6
+ metadata.gz: 03e388f057fecc10ce8166f33019187f7e5b92d21ed4113645df42710c33e313c038ff143ba127074e0d1fe34ed4bb2b90ea0664d8094910df3e3459b5de5615
7
+ data.tar.gz: a179499225df40019a402f3d1729dc4207d0bd10a73d98db0eb67235e4016c9e12da1679d1e47366bf0e4dadbdfc96687a8967036558b3b3e2e51a1172915133
@@ -125,9 +125,15 @@ module CocoapodsMangle
125
125
  # Internal Swift symbols starting with __swift or ___swift such as should not be mangled
126
126
  # e.g. '00000000000050ac S ___swift_reflection_version'
127
127
  symbol[/ __(_)?swift/] ||
128
- # Internal Swift symbols starting with Swift such as should not be mangled
129
- # e.g. 'Swift51Override'
130
- symbol[/Swift/] ||
128
+ # Internal Swift symbols starting with digit+Swift+optional_digit should not be mangled
129
+ # e.g. '34SwiftOverride', '34Swift570Override'
130
+ symbol[/\d+Swift(\d+)?/] ||
131
+ # Internal Swift symbols starting with Swift+digit should not be mangled
132
+ # e.g. 'Swift570Override'
133
+ symbol[/Swift\d+/] ||
134
+ # Internal SwiftUI symbols starting with digit+SwiftUI+optional_digit such as should not be mangled
135
+ # e.g. '55SwiftUI', '55SwiftUI45'
136
+ symbol[/\d+SwiftUI(\d+)?/] ||
131
137
  # Swift symbols starting with symbolic should be ignored
132
138
  # e.g. '0000000000000248 S symbolic _____ 9ManglePod9SomeClassC'
133
139
  symbol[/symbolic /] ||
@@ -1,4 +1,4 @@
1
1
  module CocoapodsMangle
2
2
  NAME = 'cocoapods-mangle'
3
- VERSION = '1.1.3'
3
+ VERSION = '1.1.5'
4
4
  end
@@ -35,6 +35,7 @@ describe CocoapodsMangle::Defines do
35
35
  FLAnimatedImage
36
36
  FLWeakProxy
37
37
  FLAnimatedImageView
38
+ BrianSwiftAsyncIntegration
38
39
  ]
39
40
  end
40
41
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: cocoapods-mangle
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.3
4
+ version: 1.1.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - James Treanor, Brian Boyle
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-07-26 00:00:00.000000000 Z
11
+ date: 2024-02-16 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: cocoapods
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.12.1
19
+ version: '1.15'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.12.1
26
+ version: '1.15'
27
27
  description: Mangling your dependencies symbols allows more than one copy of a dependency
28
28
  to exist without errors. This plugin mangles your dependecies to make this possible
29
29
  email:
@@ -57,7 +57,7 @@ homepage: https://github.com/intercom/cocoapods-mangle
57
57
  licenses:
58
58
  - Apache-2.0
59
59
  metadata: {}
60
- post_install_message:
60
+ post_install_message:
61
61
  rdoc_options: []
62
62
  require_paths:
63
63
  - lib
@@ -73,7 +73,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
73
73
  version: '0'
74
74
  requirements: []
75
75
  rubygems_version: 3.1.6
76
- signing_key:
76
+ signing_key:
77
77
  specification_version: 4
78
78
  summary: A CocoaPods plugin which mangles the symbols of your dependencies
79
79
  test_files: