Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lyokato/as3oauth
ActionScript 3.0 OAuth Client Library
https://github.com/lyokato/as3oauth
Last synced: about 2 months ago
JSON representation
ActionScript 3.0 OAuth Client Library
- Host: GitHub
- URL: https://github.com/lyokato/as3oauth
- Owner: lyokato
- Created: 2008-12-30T16:05:47.000Z (about 16 years ago)
- Default Branch: master
- Last Pushed: 2010-03-15T13:12:09.000Z (almost 15 years ago)
- Last Synced: 2024-08-03T05:02:30.031Z (5 months ago)
- Language: ActionScript
- Homepage:
- Size: 3.3 MB
- Stars: 4
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
Awesome Lists containing this project
- awesome-actionscript-sorted - as3oauth - ActionScript 3.0 OAuth Client Library (Networking / Authentication)
README
== Setup
To include mxmlc, adl and adt (from Flex Builder):
export PATH="/Applications/Adobe Flex Builder 3/sdks/moxie/bin:$PATH"
To include adl and adt (from Apollo SDK):
export PATH="/Applications/ApolloSDK/bin:$PATH"
== Creating an AIR projectairake path/to/MyProject com.company.MyProject
will build a project scaffold with application name of MyProject and application id (used for AIR descriptor) of com.company.MyProjectThe project includes as3corelib and flexunit, and test scaffolding as well.
== TasksRun: rake --tasks
# Compiling
rake compile# Running air debug launcher (ADL)
rake adl
# Start FCSHD (for faster compilation)
rake fcsh:start# Stop FCSHD
rake fcsh:stop# Restart FCSHD
rake fcsh:restart# Running alternate MXML, (the following expects src/Test-app.xml descriptor file)
rake adl MXML=src/Test.mxml# Testing
rake test# Package AIR file
rake package