File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1035,7 +1035,7 @@ install just Nimble.
10351035## Installing Nimble via CocoaPods
10361036
10371037To use Nimble in CocoaPods to test your iOS or OS X applications, update CocoaPods to Version 0.36.0.
1038- Then just add Nimble to your podfile and add the ``` use_frameworks! ``` line to enable Switf support for Cocoapods.
1038+ Then add Nimble to your podfile and add the ``` use_frameworks! ``` line to enable Swift support for Cocoapods.
10391039
10401040``` ruby
10411041platform :ios , ' 8.0'
@@ -1046,15 +1046,11 @@ source 'https://github.com/CocoaPods/Specs.git'
10461046
10471047target ' YOUR_APP_NAME_HERE_Tests' , :exclusive => true do
10481048 use_frameworks!
1049- pod ' Nimble'
1049+ # If you're using Swift 1.2 (Xcode 6.3 beta), use this:
1050+ pod ' Nimble' , ' ~> 0.4.0'
1051+ # Otherwise, use this commented out line for Swift 1.1 (Xcode 6.2):
1052+ # pod 'Nimble', '~> 0.3.0'
10501053end
10511054```
10521055
1053- To use Nimble with Swift 1.2, you'll currently need to use Version 0.4.0 of Nimble. To do so, extend the line in your Podfile:
1054-
1055- ``` ruby
1056- pod ' Nimble' , :git => ' git@github.com:Quick/Nimble.git' , :tag => ' v0.4.0'
1057- ```
1058-
1059-
10601056Finally run ` pod install ` .
You can’t perform that action at this time.
0 commit comments