Project

as3signals

0.0
No commit activity in last 3 years
No release in over 3 years
AS3-Signals wrapped in a Sprout::Specification for implementation into a sprout project. Signals is a new approach for AS3 events, inspired by C# events and signals/slots in Qt.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

>= 1.0.0.pre
 Project Readme

The AS3-Signals Sprout Gem

Robert Penner’s AS3-Signals ActionScript 3 source wrapped in a Sprout::Specification for implementation into a sprout project and Gem::Specification for distribution as a gem.

This sprout gem includes the AS3-Signals source code forked from github.com/robertpenner/as3-signals. As a sprout, the source code will be copied to lib/as3-signals of your sprout project.

Installation

Intended for use with a project using Project Sprouts. More information here:

Add the AS3-Signals gem to your Gemfile:

gem "as3signals", ">= 0.7.0"

Add the AS3-Signals library dependency to your Rakefile:

library :as3signals

Enter this shell command to resolve gem dependency:

$ bundle install vendor

Ruby Gem

The gem can be installed independently of a project entering this command:

$ gem install as3signals

Available assets

The gem provides the following options for how to include the library in your project.

library :as3signals				# => (default) will include the swc at lib/as3signals
library :as3signals, :swc		# => will include the swc at lib/as3signals
library :as3signals, :src		# => will include the source code at lib/as3signals
library :as3signals, :docs		# => will include the asdoc files at lib/as3signals
library :as3signals, :all		# => will include all available files at lib/as3signals

Build and Installation from Source

This sequence of commands will build and install the gem directly. This may be necessary if updates are made before the gem is updated on rubygems.org.

Clone git repository:

git clone https://github.com/amoslanka/sprout-as3-signals.git sprout-as3-signals
cd sprout-as3-signals

Resolve dependencies:

bundle install vendor

Compile swc and asdocs:

rake compile

Run rake gem:install task:

rake gem:install

Additional links