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
""" | |
Example snippet on how to sync from JIRA to omnifocus. | |
The main function is OmniFocus.sync_jira_to_omnifocus(). | |
OmniFocus.process_jira_data() is customized to filter projects based on my own needs and will need updating. | |
""" | |
from applescript import AppleScript, ScriptError | |
from datetime import datetime | |
from json import JSONDecoder | |
from logging import getLogger |
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
name: "${project_name}" | |
options: | |
bundleIdPrefix: ink.jal | |
targets: | |
"${project_name}": | |
type: application | |
platform: iOS | |
deploymentTarget: "10.0" | |
sources: [Sources] | |
settings: |
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
#!/bin/bash | |
# Bash Helper Parameters | |
set -o errexit # Exit on uncaught errors | |
set -o nounset # Don't allow unset variables | |
set -o pipefail # Fail pipe on first error | |
# Variables | |
xcodegen_yaml="https://gist.githubusercontent.com/eran3d/61018abb8d7736a0a380fa9fda20c6f9/raw/project.yml?cachebust=xxx" |
OlderNewer