Mark Anders
- Total activity 43
- Last activity
- Member since
- Following 0 users
- Followed by 0 users
- Votes 1
- Subscriptions 17
-
Created Any way for AppCode to work with multiple Git repositories in a workspace?
I have an app that uses CocoaPods and one of the pods is one I've developed as part of the app. In the Podfile, it's specified as:pod 'MyTableView', :path => '../MyTableView'As a result, if I open... -
Created Possible to step into decorated functions?
I'm working on a Flask project and am using Flask-Principal. One way to apply access checks is to use a decorator like: @mod_auth.route(‘/admin’) @admin.require(http_exception=403) def admin(): ...