File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 11PATH
22 remote: .
33 specs:
4- cocoapods-mangle (1.1.1 )
4+ cocoapods-mangle (1.1.2 )
55 cocoapods (~> 1.11.3 )
66
77GEM
1515 minitest (>= 5.1 )
1616 tzinfo (~> 2.0 )
1717 zeitwerk (~> 2.3 )
18- addressable (2.8.2 )
18+ addressable (2.8.4 )
1919 public_suffix (>= 2.0.2 , < 6.0 )
2020 algoliasearch (1.27.5 )
2121 httpclient (~> 2.8 , >= 2.8.3 )
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ Gem::Specification.new do |spec|
77 spec . license = 'Apache-2.0'
88 spec . email = [ 'james@intercom.io' ]
99 spec . homepage = 'https://github.com/intercom/cocoapods-mangle'
10- spec . authors = [ 'James Treanor' ]
10+ spec . authors = [ 'James Treanor, Brian Boyle ' ]
1111 spec . summary = 'A CocoaPods plugin which mangles ' \
1212 'the symbols of your dependencies'
1313 spec . description = 'Mangling your dependencies symbols allows more than ' \
Original file line number Diff line number Diff line change @@ -154,7 +154,10 @@ def self.swift_symbol?(symbol)
154154 symbol [ /_\w +_swiftoverride_/ ] ||
155155 # _Zxxxswift symbols should be skipped
156156 # e.g. _ZN5swift34swift50override_conformsToProtocolEPKNS
157- symbol [ /_Z\w +swift/ ]
157+ symbol [ /_Z\w +swift/ ] ||
158+ # get_witness_table symbols should be skipped
159+ # e.g. get_witness_table Say6.2
160+ symbol [ /get_witness_table / ]
158161 end
159162
160163 def self . run_nm ( binaries , flags )
Original file line number Diff line number Diff line change 11module CocoapodsMangle
22 NAME = 'cocoapods-mangle'
3- VERSION = '1.1.1 '
3+ VERSION = '1.1.2 '
44end
You can’t perform that action at this time.
0 commit comments