CocoaPods / Rome

Makes it easy to build a list of frameworks.
MIT License
696 stars 64 forks source link

Better UI #2

Closed neonichu closed 9 years ago

neonichu commented 9 years ago

Currently, there's way too much boilerplate in the Podfile, it should just be

pod 'Alamofire'

also the command is kinda longish. So ideally, one would do something like:

$ pod bootstrap

and that would amend the Podfile for consumption by the actual pod install and also pass the extra arguments to it.

neonichu commented 9 years ago

Maybe the platform needs to be specified? Would be kinda annoying to first go through all required specs to determine the common denominator of platforms. ¯_(ツ)_/¯

AliSoftware commented 9 years ago

Couldn't it be possible to add a pod rome command that internally calls the same ruby code as pod install --no-integrate would do… but tweaking the in-memory ruby representation of the Podfile to add/simulate that use_framework! flag internally? (Just a thought, didn't check if that's actually possible given CP code architecture)

segiddins commented 9 years ago

That's totally possible @AliSoftware