Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/benmills/xmler
Simple actionscript XML parsing and mapping
https://github.com/benmills/xmler
Last synced: about 1 month ago
JSON representation
Simple actionscript XML parsing and mapping
- Host: GitHub
- URL: https://github.com/benmills/xmler
- Owner: benmills
- Created: 2010-11-19T23:03:00.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2010-11-30T22:43:52.000Z (almost 14 years ago)
- Last Synced: 2024-04-17T02:56:31.039Z (7 months ago)
- Language: ActionScript
- Homepage:
- Size: 277 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.txt
Awesome Lists containing this project
README
########################################
This project was generated using Sprouts
http://projectsprouts.orgPlease report any bugs to:
http://github.com/lukebayes/project-sprouts/issuesPlease feel free to ask questions at:
http://groups.google.com/group/projectsproutsRead the RDOCs at:
http://projectsprouts.org/rdoc########################################
Using your favorite terminal, cd to this directory have fun!########################################
To create a new ActionScript class, TestCase and rebuild all project TestSuites:script/generate class -s utils.MathUtil
########################################
To create a new Interface begin the name with I + Capital letter (eg: ISomeName)
or end the name with 'able'Name begins with Capital 'I' followed by another capital letter
script/generate class utils.ISomeNameor
Name ends with 'able'
script/generate class utils.Observableor
Explicitly identify interface creation
script/generate interface utils.SomeInterface########################################
To create a new TestCase only, enter the following:script/generate test utils.SomeTest
########################################
To compile and launch your application:rake
########################################
To compile and launch your test suites:rake test
########################################
To see all available rake tasks:rake -T