- List your dependencies in a Cartfile. Refer to the Carthage documentation for details.
- Run
carthage bootstrap --no-build --use-submodules
- Create a new workspace.
- Drag your existing App project into the workspace.
- Drag framework dependency projects from ./Carthage/Checkouts into the workspace.
- Go to the General tab of your target properties.
- Add framework dependencies to Linked Frameworks and Libraries. They will show up as Workspace frameworks.
- Add the same frameworks to Embedded Binaries.
- Note, the previous step will probably create duplicates in Linked Frameworks and Libraries. Delete the duplicates.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# coding: utf-8 | |
""" | |
Simple addon to quickly lookup words in the OSX dictionary | |
Author: Dmitry Gordeev <[email protected]> | |
Heavily based of work by | |
Eddie Blundell <[email protected]> | |
https://gist.github.com/eddie/ff3d820fb267ae26ca0e | |
Artiom Basenko <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from string import Template | |
import oauth2 as oauth | |
import urlparse | |
import urllib | |
import time | |
import xml.dom.minidom | |
import sys, getopt | |
# If you get 'Title Messed Up By Unicode Error' messages try | |
# export PYTHONIOENCODING=utf-8 |