How to check the current version of RestKit

I inherited the iOS project at work, and I get the feeling that it is using the old version of RestKit. Where can I check?

+5
source share
3 answers

Having got acquainted with how RestKit is really connected with the project where the files live, etc., I came across the answer:

  • Navigate to the location of your xCode project containing RestKit
  • Open or cd to RestKit folder
  • Open VERSION in vim or another text editor, and the version number will be indicated there.

I guess I was pretty naive about the location of the RestKit files. Should have checked version information first.

+8
source

RestKit ( 20 2013 ) xcode "RestKit.podspec" ( RestKit CocoaPods). :

Pod::Spec.new do |s|
    s.name         =  'RestKit'
    s.version      =  '0.20.0rc1'
    ... etc
+1

If you use CocoaPods, just run pod installit and you will get a printout with the following information.

Analyzing dependencies
Downloading dependencies
Using AFNetworking (1.3.3)
Using RestKit (0.20.3)
Using SOCKit (1.1)
Using TransitionKit (1.1.1)
Generating Pods project
Integrating client project
0
source

All Articles