airake 0.4.0 → 0.4.1
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +4 -0
- data/Manifest.txt +1 -0
- data/app_generators/shared/airake.yml +20 -0
- data/lib/airake/version.rb +1 -1
- metadata +2 -1
data/History.txt
CHANGED
data/Manifest.txt
CHANGED
@@ -14,6 +14,7 @@ app_generators/browsair/USAGE
|
|
14
14
|
app_generators/browsair/browsair_generator.rb
|
15
15
|
app_generators/browsair/templates/README
|
16
16
|
app_generators/shared/Rakefile
|
17
|
+
app_generators/shared/airake.yml
|
17
18
|
app_generators/shared/application.mxml
|
18
19
|
app_generators/shared/descriptor_M5.xml
|
19
20
|
app_generators/shared/descriptor_M6.xml
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
mxml_path: src/<%= app_name %>.mxml
|
3
|
+
appxml_path: src/<%= app_name %>-app.xml
|
4
|
+
|
5
|
+
src_dirs: [ 'src' ]
|
6
|
+
lib_dir: lib
|
7
|
+
|
8
|
+
air_path: bin/<%= app_name %>.air
|
9
|
+
swf_path: bin/<%= app_name %>.swf
|
10
|
+
assets: src/assets
|
11
|
+
certificate: cert.pfx
|
12
|
+
|
13
|
+
development:
|
14
|
+
debug: true
|
15
|
+
|
16
|
+
test:
|
17
|
+
mxml_path: test/Test.mxml
|
18
|
+
appxml_path: test/Test-app.xml
|
19
|
+
src_dirs: [ 'src', 'test' ]
|
20
|
+
debug: true
|
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.1
|
5
5
|
platform: ""
|
6
6
|
authors:
|
7
7
|
- Gabriel Handford, Min Kim
|
@@ -61,6 +61,7 @@ files:
|
|
61
61
|
- app_generators/browsair/browsair_generator.rb
|
62
62
|
- app_generators/browsair/templates/README
|
63
63
|
- app_generators/shared/Rakefile
|
64
|
+
- app_generators/shared/airake.yml
|
64
65
|
- app_generators/shared/application.mxml
|
65
66
|
- app_generators/shared/descriptor_M5.xml
|
66
67
|
- app_generators/shared/descriptor_M6.xml
|