Entries tagged with xcode

Coveralls plugin for fastlane

I’ve just published a fastlane plugin that sends Xcode code coverage to Coveralls and its depending library xccoveralls that also works as standalone command line tool.

Read On 

Debugging Coda Plug-In with LLDB

  1. Open Edit Scheme window (⌘<).
  2. Select Run pane from side bar.
  3. In Info tab, select Coda 2.app from Executable dropdown.
  4. Click the OK button to close the window.
  5. Select your your plug-in target.
  6. Select Build Settings tab, click Add Build Setting, select Add User-Defined Setting and set name as INSTALL_BUNDLE, value as 1 for Debug configuration.
  7. Switch to Build Phase tab, click Add Build Phase button and select Add Run Script
  8. Copy and paste the script bellow.
if [ $INSTALL_BUNDLE == 1 ]; then
...