Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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:

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