I have been using cocoapods for a while now, and there have never been any problems, but from yesterday I get timeouts from the github serum trying to execute pod install.
Here is my podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '7.0'
use_frameworks!
pod 'iCarousel'
pod 'SwipeView'
pod 'AFNetworking'
pod 'ActionSheetPicker-3.0'
pod 'WYPopoverController'
pod 'MarqueeLabel'
pod 'MZFormSheetController'
pod 'TPKeyboardAvoiding'
pod 'SVPullToRefresh'
pod 'ReflectionView'
pod 'SCLAlertView-Objective-C'
pod 'iOS-Slide-Menu'
pod 'MONActivityIndicatorView'
pod 'HexColors'
pod 'ICViewPager'
pod 'SlackTextViewController'
pod 'STTweetLabel'
When I try to start pod install, I get this message:
Analyzing dependencies
Downloading dependencies
Installing AFNetworking (2.5.0)
[!] Error installing AFNetworking
[!] /usr/bin/git clone https://github.com/AFNetworking/AFNetworking.git /Users/georgichristov/Documents/Workspace/Examples/IOS/DigiGraff-IOS/Pods/AFNetworking --single-branch --depth 1 --branch 2.5.0
Cloning into '/Users/georgichristov/Documents/Workspace/Examples/IOS/DigiGraff-IOS/Pods/AFNetworking'...
fatal: unable to access 'https://github.com/AFNetworking/AFNetworking.git/': Failed to connect to github.com port 443: Operation timed out
Sometimes he manages to install more than one module, but he cannot install all of them, which makes my project unusable. Any idea on this?
source
share