This repository was archived by the owner on Apr 17, 2019. It is now read-only.

Description
Hi,
I am new to Pods so do not know if this really an issue. But my podfile with this code does not work.
# Uncomment this line to define a global platform for your project
platform :ios, '7.1'
target 'X' do
pod 'ObjectiveDDP', '~> 0.2.0'
pod 'LXReorderableCollectionViewFlowLayout', '~> 0.1.1'
end
target 'XTests' do
end
it gives the error
[!] Unable to satisfy the following requirements: -ObjectiveDDP (~> 0.2.0) required by Podfile
the file does work when I use the code you use in your example:
pod 'ObjectiveDDP', :git => 'https://github.com/boundsj/ObjectiveDDP.git', :branch => 'master'
Is there something I need to change to be able to run the pod 'ObjectiveDDP', '~> 0.2.0' ? Because I want to be certain of which version I pull.