From dfa11324a652f6cc920249eea8f9bc75e57c7d98 Mon Sep 17 00:00:00 2001 From: mjjimenez Date: Wed, 6 Sep 2017 02:26:47 +0800 Subject: [PATCH] Added concrete targets in Podfile to work with Cocoapods 1.0.0 onwards. (#609) --- Examples/Podfile | 21 +++++++++++++++++++-- 1 file changed, 19 insertions(+), 2 deletions(-) diff --git a/Examples/Podfile b/Examples/Podfile index 45d3415e..9cc104b2 100644 --- a/Examples/Podfile +++ b/Examples/Podfile @@ -3,6 +3,23 @@ source 'https://github.com/CocoaPods/Specs.git' workspace 'Messenger.xcworkspace' platform :ios, '7.0' -pod 'SlackTextViewController', :path => '../SlackTextViewController.podspec' +def shared_pods + pod 'SlackTextViewController', :path => '../SlackTextViewController.podspec' + pod 'LoremIpsum', '~> 1.0' +end -pod 'LoremIpsum', '~> 1.0' \ No newline at end of file +target 'Messenger-Programatic' do + shared_pods +end + +target 'Messenger-Storyboard' do + shared_pods +end + +target 'Messenger-Swift' do + shared_pods +end + +target 'Messenger-iPad-Sheet' do + shared_pods +end