Remove files that no longer exist from podfile exclusion (#2697)

* Remove files that no longer exist from podfile exclusion

* Missed some references to dealloc2main
This commit is contained in:
Garrett Moon
2016-12-02 13:29:16 -08:00
committed by Hannah Troisi
parent 8ab83504e3
commit 9706b85145

View File

@@ -30,12 +30,6 @@ Pod::Spec.new do |spec|
'AsyncDisplayKit/TextKit/ASTextKitComponents.h'
]
# ASDealloc2MainObject must be compiled with MRR
core.exclude_files = [
'AsyncDisplayKit/Private/_AS-objc-internal.h',
'AsyncDisplayKit/Details/ASDealloc2MainObject.h',
'AsyncDisplayKit/Details/ASDealloc2MainObject.m',
]
core.source_files = [
'AsyncDisplayKit/**/*.{h,m,mm}',
'Base/*.{h,m}',
@@ -46,16 +40,6 @@ Pod::Spec.new do |spec|
# See https://github.com/facebook/AsyncDisplayKit/issues/1153
'AsyncDisplayKit/TextKit/*.h',
]
core.dependency 'AsyncDisplayKit/ASDealloc2MainObject'
end
spec.subspec 'ASDealloc2MainObject' do |mrr|
mrr.requires_arc = false
mrr.source_files = [
'AsyncDisplayKit/Private/_AS-objc-internal.h',
'AsyncDisplayKit/Details/ASDealloc2MainObject.h',
'AsyncDisplayKit/Details/ASDealloc2MainObject.m',
]
end
spec.subspec 'PINRemoteImage' do |pin|