Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
marcesher committed Jan 27, 2012
0 parents commit 350d7fb
Show file tree
Hide file tree
Showing 30 changed files with 2,154 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .FlexUnitSettings/FlexUnitApplicationLastRun.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<testrun name="" >
<testsuite name="Default Test Suite" project="ActionScript-Koans">
<testsuite name="koans:AllTests" type="testcaseclass"/>
</testsuite>
<portNumber value="8765" />
</testrun>
8 changes: 8 additions & 0 deletions .FlexUnitSettings/FlexUnitApplicationLastSelection.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<testrun name="" >
<testsuite name="Default Test Suite" project="ActionScript-Koans">
<testsuite name="flexUnitTests:AllTests" type="testsuiteclass"/>
<testsuite name="flexUnitTests:AboutFlexUnitAssertions" type="testcaseclass"/>
</testsuite>
<portNumber value="8765" />
</testrun>
26 changes: 26 additions & 0 deletions .actionScriptProperties
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<actionScriptProperties analytics="false" mainApplicationPath="Main.mxml" projectUUID="fd786557-fabf-44cd-8b0a-aa78b5f34f73" version="10">
<compiler additionalCompilerArguments="-locale en_US" autoRSLOrdering="true" copyDependentFiles="true" fteInMXComponents="false" generateAccessible="true" htmlExpressInstall="true" htmlGenerate="true" htmlHistoryManagement="true" htmlPlayerVersionCheck="true" includeNetmonSwc="false" outputFolderPath="bin-debug" removeUnusedRSL="true" sourceFolderPath="src" strict="true" targetPlayerVersion="0.0.0" useApolloConfig="false" useDebugRSLSwfs="true" verifyDigests="true" warn="true">
<compilerSourcePath>
<compilerSourcePathEntry kind="1" linkType="1" path="test"/>
</compilerSourcePath>
<libraryPath defaultLinkType="0">
<libraryPathEntry kind="4" path="">
<excludedEntries>
<libraryPathEntry kind="3" linkType="1" path="${PROJECT_FRAMEWORKS}/libs/flex.swc" useDefaultLinkType="false"/>
<libraryPathEntry kind="3" linkType="1" path="${PROJECT_FRAMEWORKS}/libs/core.swc" useDefaultLinkType="false"/>
</excludedEntries>
</libraryPathEntry>
<libraryPathEntry kind="1" linkType="1" path="libs"/>
</libraryPath>
<sourceAttachmentPath/>
</compiler>
<applications>
<application path="Main.mxml"/>
<application path="FlexUnitCompilerApplication.mxml"/>
<application path="FlexUnitApplication.mxml"/>
</applications>
<modules/>
<buildCSSFiles/>
<flashCatalyst validateFlashCatalystCompatibility="false"/>
</actionScriptProperties>
2 changes: 2 additions & 0 deletions .flexProperties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<flexProperties enableServiceManager="false" flexServerFeatures="0" flexServerType="0" toolCompile="true" useServerFlexSDK="false" version="2"/>
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
/bin-debug
18 changes: 18 additions & 0 deletions .project
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>ActionScript-Koans</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>com.adobe.flexbuilder.project.flexbuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>com.adobe.flexbuilder.project.flexnature</nature>
<nature>com.adobe.flexbuilder.project.actionscriptnature</nature>
</natures>
</projectDescription>
3 changes: 3 additions & 0 deletions .settings/org.eclipse.core.resources.prefs
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#Mon Jan 23 19:41:18 EST 2012
eclipse.preferences.version=1
encoding/<project>=utf-8
22 changes: 22 additions & 0 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
Copyright (c) 2012 Marc Esher

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:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
21 changes: 21 additions & 0 deletions README.markdown
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# ActionScript Koans -- learning ActionScript through FlexUnit tests

These koans draw inspiration initially from David Laing's [JavaScript Koans](https://raw.github.com/mrdavidlaing/javascript-koans), which are based on Edgecase's [Ruby koans](http://github.com/edgecase/ruby_koans)

The koans aim to teach you ActionScript, along with FlexUnit, by getting tests from red to green.

The content of the tests is structured, and largely derived (read: shamelessly ripped off) from [Michelle Yaiser's](http://michelleyaiser.com) fantastic ActionScript documentation(http://www.adobe.com/devnet/actionscript/learning.html)

I'm writing these Koans to teach myself ActionScript. I want to learn deep. I hope they help you, too.

## How to use the Koans

## Credits

Adobe -- for ActionScript, Flex, and FlashBuilder
Mike Labriola and Simeon Bateman -- for FlexUnit
Michelle Yaiser -- for documentation
Joe Rinehart -- for teaching

## License
These Koans are licensed under the MIT license. See LICENSE for details.
6 changes: 6 additions & 0 deletions html-template/history/history.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
/* This CSS stylesheet defines styles used by required elements in a flex application page that supports browser history */

#ie_historyFrame { width: 0px; height: 0px; display:none }
#firefox_anchorDiv { width: 0px; height: 0px; display:none }
#safari_formDiv { width: 0px; height: 0px; display:none }
#safari_rememberDiv { width: 0px; height: 0px; display:none }
Loading

0 comments on commit 350d7fb

Please sign in to comment.