Skip to content

Instantly share code, notes, and snippets.

@haysclark
haysclark / build_ipa.sh
Last active January 21, 2016 19:22
Script generates an IPA file from the default OpenFL iOS build path. Has various options, use -h to get help.
#!/bin/bash
#
# OpenFL Build to IPA Script iOS 2.0, 2014
#
# Permission is hereby granted, free of charge, to any person obtaining a copy of
# this software and associated documentation files (the "Software"), to deal in
# the Software without restriction, including without limitation the rights to
# use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
# of the Software, and to permit persons to whom the Software is furnished to do
# so, subject to the following conditions:
@haysclark
haysclark / Guardfile
Last active December 28, 2015 18:09
Simple Guardfile for Haxe's MUnit that will echo the results to console and will also dispatch a Growl notify event.
# Guard File for MUnit
# Will parsing MUnit Test Results to Growl
#
require 'rubygems'
require 'ruby_gntp'
PASS_ICON_URL = 'http://static.binaryfruit.com/images/drivedx/overview/IconExclamCheck.png'
FAIL_ICON_URL = 'http://static.binaryfruit.com/images/drivedx/overview/IconExclamRed.png'
VERBOSE_FAIL = false