Duck
Duck

Reputation: 35953

Cocoapods init for ios 7. How to update that?

Every time I type

pod init

the Podfile file comes with this for iOS 6

platform :ios, "6.0"

what do I have to do to make that command always generate for iOS 7

platform :ios, "7.0"

when I type pod init? ... and preferably with that line uncommented.

Upvotes: 0

Views: 78

Answers (1)

Keith Smiley
Keith Smiley

Reputation: 63914

This is currently hardcoded into the init command. If you'd like to I'm sure you could submit a pull request for this to start the conversation about switching it.

Upvotes: 2

Related Questions