This file contains hidden or 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
fs = require 'fs' | |
path = require 'path' | |
{exec} = require 'child_process' | |
# Make sure we have our dependencies | |
try | |
colors = require 'colors' | |
coffee = require 'coffee-script' | |
browserify = require 'browserify' | |
catch error |
This file contains hidden or 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
package org.puremvc.as3.multicore.utilities.lazy.interfaces | |
{ | |
import flash.events.IEventDispatcher; | |
public interface IFacadeAdapter | |
{ | |
function getFQCN(clazz:Class):QName; | |
function startup(eventBus:IEventDispatcher, startupCommandClass:Class = null, autoMediateCommandClass:Class = null):void; | |
} | |
} |
This file contains hidden or 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
package { | |
import flash.errors.IllegalOperationError; | |
import flash.utils.Dictionary; | |
import flash.utils.Proxy; | |
import flash.utils.flash_proxy; | |
use namespace flash_proxy; | |
public dynamic class ImmutableProxy extends Proxy { | |
private const propertyMap:Dictionary = new Dictionary(); | |
This file contains hidden or 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
/** | |
* The MIT License | |
* | |
* Copyright (c) 2009 @author jessefreeman | |
* | |
* 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 |
This file contains hidden or 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
package org.tiny.tlf.interaction.gestures | |
{ | |
import flash.events.Event; | |
import flash.events.IEventDispatcher; | |
import org.tiny.tlf.events.GestureEvent; | |
public class GestureBase implements IGesture | |
{ | |
public function GestureBase() |