airake 0.1.8 → 0.1.9
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/README.txt +7 -2
- data/app_generators/airake/templates/README +7 -2
- data/lib/airake/project.rb +1 -1
- data/lib/airake/version.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
data/README.txt
CHANGED
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
== Setup
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Flex SDK: http://labs.adobe.com/technologies/flex/sdk/flex3sdk.html
|
|
4
|
+
|
|
5
|
+
To include mxmlc, fcsh, adl and adt (from Flex SDK):
|
|
6
|
+
export PATH="/path/to/flex_sdk_3/bin"
|
|
5
7
|
|
|
8
|
+
Apollo SDK: http://labs.adobe.com/downloads/airsdk.html
|
|
9
|
+
(Note: flex 3 beta 1 includes these files already)
|
|
10
|
+
|
|
6
11
|
To include adl and adt (from Apollo SDK):
|
|
7
12
|
export PATH="/Applications/ApolloSDK/bin:$PATH"
|
|
8
13
|
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
== Setup
|
|
2
2
|
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
Flex SDK: http://labs.adobe.com/technologies/flex/sdk/flex3sdk.html
|
|
4
|
+
|
|
5
|
+
To include mxmlc, fcsh, adl and adt (from Flex SDK):
|
|
6
|
+
export PATH="/path/to/flex_sdk_3/bin"
|
|
5
7
|
|
|
8
|
+
Apollo SDK: http://labs.adobe.com/downloads/airsdk.html
|
|
9
|
+
(Note: flex 3 beta 1 includes these files already)
|
|
10
|
+
|
|
6
11
|
To include adl and adt (from Apollo SDK):
|
|
7
12
|
export PATH="/Applications/ApolloSDK/bin:$PATH"
|
|
8
13
|
|
data/lib/airake/project.rb
CHANGED
|
@@ -151,7 +151,7 @@ module Airake
|
|
|
151
151
|
export PATH="/Applications/ApolloSDK/bin:$PATH"
|
|
152
152
|
|
|
153
153
|
EOS
|
|
154
|
-
puts fail_message if error_status != 256
|
|
154
|
+
puts fail_message if error_status != 256 && error_status != 4096
|
|
155
155
|
raise "[#{error_status}] Failed to run command: #{cmd}"
|
|
156
156
|
end
|
|
157
157
|
|
data/lib/airake/version.rb
CHANGED
metadata
CHANGED