airake 0.4.0 → 0.4.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,7 @@
1
+ === 0.4.1 2008-01-28
2
+
3
+ * Fix manifest
4
+
1
5
  === 0.4.0 2008-01-28
2
6
 
3
7
  * Using a config file (airake.yml), breaking backwards compatibility, sorry!
@@ -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
@@ -2,7 +2,7 @@ module Airake #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 0
5
+ TINY = 1
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
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.0
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