浏览代码

Fixed error in update to proper git url for Cocoapods Installation

Anthony Miller 10 年之前
父节点
当前提交
b970d65b29
共有 1 个文件被更改,包括 3 次插入3 次删除
  1. 3 3
      README.md

+ 3 - 3
README.md

@@ -553,7 +553,7 @@ Then, add the following lines to your Podfile:
 
 ```ruby
 use_frameworks!
-pod 'KeychainAccess', :git => 'git@github.com/kishikawakatsumi/KeychainAccess.git', :branch => 'swift-2.0'
+pod 'KeychainAccess', :git => 'https://github.com/kishikawakatsumi/KeychainAccess.git', :branch => 'swift-2.0'
 ```
 
 ##### <a name="watchos2-cocoapods"> For watchOS 2
@@ -570,12 +570,12 @@ Then, add the following lines to your Podfile:
 use_frameworks!
 
 target 'EampleApp' do
-  pod 'KeychainAccess', :git => 'git@github.com/kishikawakatsumi/KeychainAccess.git', :branch => 'swift-2.0'
+  pod 'KeychainAccess', :git => 'https://github.com/kishikawakatsumi/KeychainAccess.git', :branch => 'swift-2.0'
 end
 
 target 'EampleApp WatchKit Extension' do
   platform :watchos, '2.0'
-  pod 'KeychainAccess', :git => 'git@github.com/kishikawakatsumi/KeychainAccess.git', :branch => 'swift-2.0'
+  pod 'KeychainAccess', :git => 'https://github.com/kishikawakatsumi/KeychainAccess.git', :branch => 'swift-2.0'
 end
 ```