Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Added concrete targets in Podfile to work with Cocoapods 1.0.0 onward…
Browse files Browse the repository at this point in the history
…s. (#609)
  • Loading branch information
mjjimenez authored and Ignacio Romero Zurbuchen committed Sep 5, 2017
1 parent 42dd4ad commit dfa1132
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions Examples/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -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'
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

0 comments on commit dfa1132

Please sign in to comment.