From e72a2015d274ea15d7f99e491a2370a12a01ea9b Mon Sep 17 00:00:00 2001 From: Wanbok Choi Date: Wed, 2 Mar 2016 16:35:46 +0900 Subject: [PATCH] CocoaPods 1.0 Migration `exclusive` will be removed from [CocoaPods 1.0 Migration](http://blog.cocoapods.org/CocoaPods-1.0/). --- README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 315909cb9..06ee79ffb 100644 --- a/README.md +++ b/README.md @@ -48,13 +48,15 @@ The testing target will add a header and implementation file, likely "Acceptance Once your test target set up, add the following to your Podfile file. Use your target's name as appropriate. ```Ruby -target 'Acceptance Tests', :exclusive => true do +target 'Your Apps' do + ... +end + +target 'Acceptance Tests' do pod 'KIF', '~> 3.0', :configurations => ['Debug'] end ``` -The `:exclusive => true` option will prevent CocoaPods from including dependencies from your main target in your test target causing double-linking issues when you test link against the app. - After running `pod install` complete the tasks in [**Final Test Target Configurations**](#final-test-target-configurations) below for the final details on getting your tests to run. Installation (from GitHub)