"Runs the same tests as Xcode.app." If this works, it's huge. Mad excited about this.
It works, we use it here at Facebook
Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
11–20 of 20 posts
Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#12I'm incredibly frustrated by the lack of command line dev tools for iOS. For example using adb with Android, I can stop a running app, clear all of its data and start it again. I can push and pull files and can dissect the internal state as a result. I do find various unmaintained tools for iOS as they generally use undocumented and changing backends. My current biggest need is to grab and put files in the app sandbo…
Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#13Full disclosure, I'm one of the founders.
Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#14"Runs the same tests as Xcode.app." If this works, it's huge. Mad excited about this.
Every project's main build should be scriptable -- for reproducible releases, continuous integration etc. I wonder how Apple internally builds things for release when something this simple doesn't work (maybe they don't use OCUnit?).
Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#15Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#16Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#17I'm incredibly frustrated by the lack of command line dev tools for iOS. For example using adb with Android, I can stop a running app, clear all of its data and start it again. I can push and pull files and can dissect the internal state as a result. I do find various unmaintained tools for iOS as they generally use undocumented and changing backends. My current biggest need is to grab and put files in the app sandbo…
I have a library that does this for simulator apps in iOS: http://github.com/orta/chairs/ - but as you say, undocumented , unofficial & hacky
Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#18Earlier quoted context omitted.
I have a library that does this for simulator apps in iOS: http://github.com/orta/chairs/ - but as you say, undocumented , unofficial & hacky
For various reasons I need this mostly for real devices which is even less documented, official and more hacky :-)
Re: Xctool: a replacement for xcodebuild to build and test iOS and Mac projects
#19Earlier quoted context omitted.
For various reasons I need this mostly for real devices which is even less documented, official and more hacky :-)
well, TBH, apps like iExplorer exist. If I can find out how that can access the device's filesystem I can probably do the same and support device & sim. I'll make a github issue.