sprout-as3-bundle 0.1.38 → 0.1.39
Sign up to get free protection for your applications and to get access to all the features.
data/lib/sprout/as3/version.rb
CHANGED
@@ -65,7 +65,9 @@ flashplayer :test => model.test_output
|
|
65
65
|
# to the compiler source or swc paths
|
66
66
|
|
67
67
|
desc "Compile application"
|
68
|
-
mxmlc model.output => :corelib do |t|
|
68
|
+
mxmlc model.output => [:corelib] do |t|
|
69
|
+
# Uncomment to use the Flex 3 SDK
|
70
|
+
# t.gem_name = 'sprout-flex3sdk-tool'
|
69
71
|
t.warnings = true
|
70
72
|
t.default_background_color = '#FFFFFF'
|
71
73
|
t.default_frame_rate = 24
|
@@ -81,10 +83,12 @@ end
|
|
81
83
|
|
82
84
|
desc "Compile test harness"
|
83
85
|
mxmlc model.test_output => [:asunit3, :corelib] do |t|
|
86
|
+
# Uncomment to use the Flex 3 SDK
|
87
|
+
# t.gem_name = 'sprout-flex3sdk-tool'
|
84
88
|
t.warnings = true
|
85
89
|
t.default_background_color = '#FFFFFF'
|
86
90
|
t.default_frame_rate = 24
|
87
|
-
t.verbose_stacktraces
|
91
|
+
t.verbose_stacktraces = true
|
88
92
|
t.default_size = "800 450"
|
89
93
|
t.input = "#{model.src_dir}/<%= project_name %>Runner.as"
|
90
94
|
t.source_path << model.src_dir
|
@@ -96,4 +100,7 @@ end
|
|
96
100
|
# Build documentation for your application
|
97
101
|
|
98
102
|
desc "Create documentation"
|
99
|
-
asdoc model.doc_dir => model.
|
103
|
+
asdoc model.doc_dir => model.test_output do |t|
|
104
|
+
# Uncomment to use the Flex 3 SDK
|
105
|
+
# t.gem_name = 'sprout-flex3sdk-tool'
|
106
|
+
end
|
@@ -21,13 +21,16 @@ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
|
21
21
|
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
22
22
|
=end
|
23
23
|
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
24
|
+
module Rake # :nodoc:
|
25
|
+
class Tasks # :nodoc:
|
26
|
+
|
27
|
+
# Override Rake::Task.actions so that we can
|
28
|
+
# pull them from our dependent tasks
|
29
|
+
def actions
|
30
|
+
@actions
|
31
|
+
end
|
30
32
|
end
|
33
|
+
|
31
34
|
end
|
32
35
|
|
33
36
|
module Sprout
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: sprout-as3-bundle
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.39
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Pattern Park
|
@@ -9,7 +9,7 @@ autorequire: sprout/as3
|
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
11
|
|
12
|
-
date: 2008-02-
|
12
|
+
date: 2008-02-25 00:00:00 -08:00
|
13
13
|
default_executable:
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|