这是我的Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'RMQClient', '~> 0.8'
当我尝试使用pod install
从cocoapods安装repo时,它会安装pod 'RMQClient'
的新版本(例如0.9)。
在具有相同xcode project
的其他Podfile
中,我创建了一个pod update
,并且cocoapods更新了pod repo:
安装RMQClient 0.9.0(为0.8)
如何在更新时阻止cocoapods
更新pod repos?
如何强制安装我在Podfile
中设置的版本?