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
README: http://fitzgen.github.com/github-api/ | |
Repo: https://github.com/fitzgen/github-api/blob/master/github.js |
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
javascript_compressor: yui | |
gzip_assets: off | |
javascripts: | |
scripts: | |
- _source/libs/jquery-1.5.min.js | |
- _source/libs/jquery.address-1.4.min.js | |
- _source/src/myShit.js | |
- _source/src/moreOfMyShit.js |
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
desc "Parse haml layouts" | |
task :parse_haml do | |
print "Parsing Haml layouts..." | |
system(%{ | |
cd _source/_layouts/haml && | |
for f in *.haml; do [ -e $f ] && haml $f ../${f%.haml}.html; done | |
}) | |
puts "done." | |
end |
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
<project name="My Project" default="init"> | |
<!-- load previously defined configuration properties file --> | |
<property file="build.properties" /> | |
<property name="APP_ROOT" value="DEPLOY" /> | |
<!-- points to our flexTasks.jar we copied to the libs folder to distribute with the project --> | |
<taskdef resource="flexTasks.tasks" classpath="${basedir}/lib/flexTasks.jar" /> | |
<!-- Initialize the targets --> |
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
<project name="Flex Ant Tasks Build Script" default="init"> | |
<!-- load previously defined configuration properties file --> | |
<property file="build.properties" /> | |
<property name="APP_ROOT" value="DEPLOY"/> | |
<!-- points to our flexTasks.jar we copied to the libs folder to distribute with the project --> | |
<taskdef resource="flexTasks.tasks" classpath="${basedir}/libs/flexTasks.jar" /> | |
<!-- delete and create the DEPLOY dir again --> |
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
CO_NAME = mycompany | |
PROJ_NAME = myproject | |
APP_DOCS = ${basedir}/doc | |
ASSETS = ${DEPLOY_DIR}/assets | |
BUILD_ASSETS = ${basedir}/build_assets | |
DEPLOY_DIR = ${basedir}/bin | |
LIBS_DIR =${basedir}/lib | |
PROJ_COMMON_LIBS = //CHANGE THIS TO THE PATH TO YOUR COMMONLY USED LIBRARIES |
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
package com.numbknuckle.model { | |
import com.numbknuckle.events.FobEvents; | |
import flash.display.MovieClip;; | |
/** | |
* @author Brian Connatser | |
*/ | |
public class AssetConversion extends MovieClip { | |
private var _assetsXML : XML; |