airake 0.4.4 → 0.4.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/History.txt +4 -0
- data/Manifest.txt +0 -1
- data/README.txt +9 -7
- data/app_generators/airake/templates/README +9 -7
- data/lib/airake/project.rb +2 -2
- data/lib/airake/tasks/flash.rake +1 -3
- data/lib/airake/version.rb +1 -1
- metadata +2 -4
- data/Notes.txt +0 -5
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
data/README.txt
CHANGED
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
== Setup
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Flex 3 SDK: http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK
|
|
4
|
+
|
|
5
|
+
To include mxmlc, adl and adt (from Flex SDK):
|
|
6
|
+
export PATH="/path/to/flex3sdk/bin:$PATH"
|
|
7
|
+
|
|
8
|
+
Adobe AIR SDK: http://www.adobe.com/products/air/tools/sdk/
|
|
5
9
|
|
|
6
10
|
To include adl and adt (from Apollo SDK):
|
|
7
|
-
export PATH="/
|
|
11
|
+
export PATH="/path/to/air-sdk/bin:$PATH"
|
|
8
12
|
|
|
9
13
|
== Creating an AIR project
|
|
10
14
|
|
|
11
|
-
airake path/to/MyProject
|
|
15
|
+
airake path/to/MyProject
|
|
12
16
|
|
|
13
|
-
will build a project scaffold with application name of MyProject
|
|
14
|
-
|
|
15
|
-
The project includes as3corelib and flexunit, and test scaffolding as well.
|
|
17
|
+
will build a project scaffold with application name of MyProject. The project includes as3corelib and flexunit, and test scaffolding as well.
|
|
16
18
|
|
|
17
19
|
== Tasks
|
|
18
20
|
|
|
@@ -1,18 +1,20 @@
|
|
|
1
1
|
== Setup
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Flex 3 SDK: http://opensource.adobe.com/wiki/display/flexsdk/Flex+SDK
|
|
4
|
+
|
|
5
|
+
To include mxmlc, adl and adt (from Flex SDK):
|
|
6
|
+
export PATH="/path/to/flex3sdk/bin:$PATH"
|
|
7
|
+
|
|
8
|
+
Adobe AIR SDK: http://www.adobe.com/products/air/tools/sdk/
|
|
5
9
|
|
|
6
10
|
To include adl and adt (from Apollo SDK):
|
|
7
|
-
export PATH="/
|
|
11
|
+
export PATH="/path/to/air-sdk/bin:$PATH"
|
|
8
12
|
|
|
9
13
|
== Creating an AIR project
|
|
10
14
|
|
|
11
|
-
airake path/to/MyProject
|
|
15
|
+
airake path/to/MyProject
|
|
12
16
|
|
|
13
|
-
will build a project scaffold with application name of MyProject
|
|
14
|
-
|
|
15
|
-
The project includes as3corelib and flexunit, and test scaffolding as well.
|
|
17
|
+
will build a project scaffold with application name of MyProject. The project includes as3corelib and flexunit, and test scaffolding as well.
|
|
16
18
|
|
|
17
19
|
== Tasks
|
|
18
20
|
|
data/lib/airake/project.rb
CHANGED
|
@@ -41,8 +41,8 @@ module Airake
|
|
|
41
41
|
EOS
|
|
42
42
|
end
|
|
43
43
|
|
|
44
|
-
options = YAML.load_file(File.join(base_dir, "airake.yml"))
|
|
45
|
-
env_options = options[env]
|
|
44
|
+
options = YAML.load_file(File.join(@base_dir, "airake.yml"))
|
|
45
|
+
env_options = options[@env]
|
|
46
46
|
options = options.merge(env_options) if env_options
|
|
47
47
|
options.symbolize_keys!
|
|
48
48
|
end
|
data/lib/airake/tasks/flash.rake
CHANGED
data/lib/airake/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: airake
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.4.
|
|
4
|
+
version: 0.4.5
|
|
5
5
|
platform: ""
|
|
6
6
|
authors:
|
|
7
7
|
- Gabriel Handford, Min Kim
|
|
@@ -9,7 +9,7 @@ autorequire:
|
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
11
|
|
|
12
|
-
date: 2008-
|
|
12
|
+
date: 2008-07-15 00:00:00 -04:00
|
|
13
13
|
default_executable:
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
@@ -40,14 +40,12 @@ extra_rdoc_files:
|
|
|
40
40
|
- History.txt
|
|
41
41
|
- License.txt
|
|
42
42
|
- Manifest.txt
|
|
43
|
-
- Notes.txt
|
|
44
43
|
- README.txt
|
|
45
44
|
files:
|
|
46
45
|
- History.txt
|
|
47
46
|
- License.txt
|
|
48
47
|
- MIT-LICENSE
|
|
49
48
|
- Manifest.txt
|
|
50
|
-
- Notes.txt
|
|
51
49
|
- README.txt
|
|
52
50
|
- Rakefile
|
|
53
51
|
- air_generators/class/USAGE
|