From f1ac0a474a853206c651bf6379ec59b289a6bcc1 Mon Sep 17 00:00:00 2001 From: rborkow Date: Sat, 24 Jan 2015 15:11:20 -0800 Subject: [PATCH] Update README.md Line 55, pod 'Alamofire', ~> '1.1' throws a CocoaPods error. Proper format appears to be " pod 'Alamofire', '~> 1.1' " --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 25f9dd4..8824640 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,7 @@ To integrate Alamofire into your Xcode project using CocoaPods, specify it in yo source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.0' -pod 'Alamofire', ~> '1.1' +pod 'Alamofire', '~> 1.1' ``` Then, run the following command: -- GitLab