Skip to content

Instantly share code, notes, and snippets.

# ---------------------------------------- build --------------------------------------------------------
lane :store do |options|
match_setup(readonly:false)
ipaPath = createIPA
deliver(username: ENV['MATCH_USERNAME'],
team_id: ENV['TEAM_ID'],
app_identifier: ENV['BUNDLE_ID'],
ipa: ipaPath,
skip_metadata:true,
@niggeulimann
niggeulimann / TLFSprite.as
Created August 10, 2012 12:31 — forked from jamikado/TLFSprite.as
TLFSprite is a Starling extension that provides an alternative to starling.text.TextField to render text from OpenType or TrueType fonts (both device and embedded CFF) using the Text Layout Framework instead of flash.text.TextField
// =================================================================================================
//
// based on starling.text.TextField
// modified to use text layout framework engine for rendering text
//
// =================================================================================================
package starling.extensions
{
import flash.display.BitmapData;