thoughtbot / ios-on-rails

A guide to building a Rails API and iOS app
Other
76 stars 6 forks source link

Update the iOS portion of the book for API changes #129

Closed dazmuda closed 8 years ago

dazmuda commented 8 years ago
calebhearth commented 8 years ago

cc @joshuaogle @edwardloveall @hrs

edwardloveall commented 8 years ago

I know you didn't update any of the Managing Dependencies section, but I had errors when I ran pod install the first time, which led me to install the beta version of cocoapods: gem install cocoapods --pre, and this let me to have to update my Podfile for the 1.0 version of cocoapods:

platform :ios, '7.0'

target 'Humon' do
  pod 'SSKeychain', '~> 1.2.2'
  pod 'SVProgressHUD', '~> 1.0'
end
dazmuda commented 8 years ago

You know what, I think I'm going to remove the whole A+B section. It always felt a little too deep a dive.

I'm going to make all the changes you mentioned on posting-a-user and push that up.

dazmuda commented 8 years ago

Removed the A+B section and made the changes @edwardloveall mentioned in https://github.com/thoughtbot/ios-on-rails/pull/130

Closed in favor of that PR.