Add notes about installation failures due to Git version

This commit is contained in:
Blake Watters
2012-10-24 15:30:24 -04:00
parent 37ae82c695
commit 19046ba58d
4 changed files with 9 additions and 7 deletions

View File

@@ -8,4 +8,4 @@ gem 'xcoder', :git => "git://github.com/rayh/xcoder.git"
gem 'restkit', :git => 'git://github.com/RestKit/RestKit-Gem.git'
gem 'debugger', '1.2.0'
gem 'faker', '1.1.2'
gem 'cocoapods', '0.15.1'
gem 'cocoapods', '0.15.2'

View File

@@ -32,7 +32,7 @@ GEM
multi_json (~> 1.0)
addressable (2.3.2)
builder (3.1.3)
cocoapods (0.15.1)
cocoapods (0.15.2)
activesupport (~> 3.2.6)
colored (~> 1.2)
escape (~> 0.0.4)
@@ -41,7 +41,7 @@ GEM
octokit (~> 1.7)
open4 (~> 1.3.0)
rake (~> 0.9.0)
xcodeproj (>= 0.3.4)
xcodeproj (~> 0.3.5)
colored (1.2)
columnize (0.3.6)
daemons (1.1.9)
@@ -86,7 +86,7 @@ GEM
eventmachine (>= 0.12.6)
rack (>= 1.0.0)
tilt (1.3.3)
xcodeproj (0.3.4)
xcodeproj (0.3.5)
activesupport (~> 3.2.6)
PLATFORMS
@@ -94,7 +94,7 @@ PLATFORMS
DEPENDENCIES
bundler (~> 1.2.0)
cocoapods (= 0.15.1)
cocoapods (= 0.15.2)
debugger (= 1.2.0)
faker (= 1.1.2)
rake (~> 0.9.0)

View File

@@ -17,4 +17,4 @@ SPEC CHECKSUMS:
OCHamcrest: 75258b3746b118ed9de96a6a8d985546f32e0f9b
OCMock: 77a9c4c57af6bf258a537d34cf09abf422affede
COCOAPODS: 0.15.1
COCOAPODS: 0.15.2

View File

@@ -505,7 +505,7 @@ Support for additional formats and alternate serialization backends is provided
## Installation
The recommended approach for installating RestKit is via the [CocoaPods](http://cocoapods.org/) package manager, as it provides flexible dependency management and dead simple installation.
The recommended approach for installating RestKit is via the [CocoaPods](http://cocoapods.org/) package manager, as it provides flexible dependency management and dead simple installation. For best results, it is recommended that you install via CocoaPods **>= 0.15.2** using Git **>= 1.8.0** installed via Homebrew.
### via CocoaPods
@@ -534,6 +534,8 @@ Install into your project:
$ pod install
```
Please note that if your installation fails, it may be because you are installing with a version of Git lower than CocoaPods is expecting. Please ensure that you are running Git **>= 1.8.0** by executing `git --version`. You can get a full picture of the installation details by executing `pod install --verbose`.
### From a Release Package or as a Git submodule
Detailed installation instructions are available in the [Visual Install Guide](https://github.com/RestKit/RestKit/wiki/Installing-RestKit-v0.20.x-as-a-Git-Submodule) on the Wiki.