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.
@@ -1,3 +1,7 @@
1
+ === 0.4.5 2008-07-15
2
+
3
+ * Fixing environment settings.
4
+
1
5
  === 0.4.4 2008-06-25
2
6
 
3
7
  * Can use to compile flash swfs
@@ -2,7 +2,6 @@ History.txt
2
2
  License.txt
3
3
  MIT-LICENSE
4
4
  Manifest.txt
5
- Notes.txt
6
5
  README.txt
7
6
  Rakefile
8
7
  air_generators/class/USAGE
data/README.txt CHANGED
@@ -1,18 +1,20 @@
1
1
  == Setup
2
2
 
3
- To include mxmlc, adl and adt (from Flex Builder):
4
- export PATH="/Applications/Adobe Flex Builder 3/sdks/moxie/bin:$PATH"
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="/Applications/ApolloSDK/bin:$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 com.company.MyProject
15
+ airake path/to/MyProject
12
16
 
13
- will build a project scaffold with application name of MyProject and application id (used for AIR descriptor) of com.company.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
- To include mxmlc, adl and adt (from Flex Builder):
4
- export PATH="/Applications/Adobe Flex Builder 3/sdks/moxie/bin:$PATH"
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="/Applications/ApolloSDK/bin:$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 com.company.MyProject
15
+ airake path/to/MyProject
12
16
 
13
- will build a project scaffold with application name of MyProject and application id (used for AIR descriptor) of com.company.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
 
@@ -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
@@ -16,9 +16,7 @@ namespace :flash do
16
16
 
17
17
  desc "Run"
18
18
  task :run do
19
-
20
-
21
-
19
+ # TODO
22
20
  end
23
21
 
24
22
  end
@@ -2,7 +2,7 @@ module Airake #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 4
5
- TINY = 4
5
+ TINY = 5
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.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-06-25 00:00:00 -04:00
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
data/Notes.txt DELETED
@@ -1,5 +0,0 @@
1
- == Dev notes
2
-
3
- Regenerating manifest:
4
-
5
- rake check_manifest | patch