sprout-as3-bundle 0.1.38 → 0.1.39

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.
@@ -3,7 +3,7 @@ module Sprout # :nodoc:
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- TINY = 38
6
+ TINY = 39
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join('.')
9
9
  MAJOR_MINOR = [MAJOR, MINOR].join('.')
@@ -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 = true
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.output
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
- class Rake::Task
25
-
26
- # Override Rake::Task.actions so that we can
27
- # pull them from our dependent tasks
28
- def actions
29
- @actions
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.38
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-24 00:00:00 -08:00
12
+ date: 2008-02-25 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency