Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joefiorini/xcode-idetestfixes
Fixes Xcode 4.4 crash when running Unit tests that rely on IDETest localizedStandardCompare:
https://github.com/joefiorini/xcode-idetestfixes
Last synced: 7 days ago
JSON representation
Fixes Xcode 4.4 crash when running Unit tests that rely on IDETest localizedStandardCompare:
- Host: GitHub
- URL: https://github.com/joefiorini/xcode-idetestfixes
- Owner: joefiorini
- Created: 2012-02-26T23:30:24.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2012-02-26T23:49:29.000Z (almost 13 years ago)
- Last Synced: 2024-11-16T16:28:51.282Z (2 months ago)
- Language: Objective-C
- Homepage:
- Size: 102 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.markdown
Awesome Lists containing this project
README
# Xcode 4.4 IDETest Fix Plugin
Fixes missing selector error when running unit tests in Xcode 4.4 pre-releases. If you are running a pre-release of this Xcode try installing this plugin and see if that fixes unit test crashes.
## Instructions
### From source
- Clone repository and build/archive
- Distribute the archive and go to your DerivedData directory for the project
- Copy .xcplugin folder to `~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/`### Pre-built binary
- Download the [pre-built plugin](https://github.com/downloads/joefiorini/Xcode-IDETestFixes/IDETestFixes.xcplugin.zip)
- Extract the zip file and copy the .xcplugin folder to `~/Library/Application Support/Developer/Shared/Xcode/Plug-ins/`### Credit
Many thanks to:
- [@martjinthe](http://github.com/martjinthe) for (the gist containing the code)[https://gist.github.com/1893437]
- [@davekeck](http://github.com/davekeck) for his (Xcode plugin examples)[https://github.com/davekeck/Xcode-4-Fixins] that helped me figure out how to write a real plugin