Explorar o código

Fixed .git URL in Cocoapods Tutorial

Anthony Miller %!s(int64=10) %!d(string=hai) anos
pai
achega
b88533c1fb
Modificáronse 1 ficheiros con 3 adicións e 3 borrados
  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 => 'git@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 => 'git@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 => 'git@github.com/kishikawakatsumi/KeychainAccess.git', :branch => 'swift-2.0'
 end
 ```