Skip to content

Commit 4ecc2f6

Browse files
committed
Updated README to use cocoapod's versioning. Fixed typo.
1 parent d8654bd commit 4ecc2f6

1 file changed

Lines changed: 5 additions & 9 deletions

File tree

README.md

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1035,7 +1035,7 @@ install just Nimble.
10351035
## Installing Nimble via CocoaPods
10361036

10371037
To 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
10411041
platform :ios, '8.0'
@@ -1046,15 +1046,11 @@ source 'https://github.com/CocoaPods/Specs.git'
10461046

10471047
target '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'
10501053
end
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-
10601056
Finally run `pod install`.

0 commit comments

Comments
 (0)