sprout-mxml-bundle 0.1.1 → 0.1.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,6 +11,12 @@
11
11
  import asunit.textui.TestRunner;
12
12
 
13
13
  public function runTests():void {
14
+
15
+ // start(clazz:Class, methodName:String, showTrace:Boolean)
16
+ // NOTE: sending a particular class and method name will
17
+ // execute setUp(), the method and NOT tearDown.
18
+ // This allows you to get visual confirmation while developing
19
+ // visual entities
14
20
  start(AllTests, null, TestRunner.SHOW_TRACE);
15
21
  }
16
22
  ]]>
data/lib/sprout/mxml.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  require 'sprout'
2
- require 'sprout/as3'
2
+ sprout 'sprout-as3-bundle'
3
3
  require 'sprout/generator'
4
4
  require 'sprout/as3_tasks'
5
5
 
@@ -3,7 +3,7 @@ module Sprout # :nodoc:
3
3
  module VERSION #:nodoc:
4
4
  MAJOR = 0
5
5
  MINOR = 1
6
- TINY = 1
6
+ TINY = 3
7
7
 
8
8
  STRING = [MAJOR, MINOR, TINY].join('.')
9
9
  MAJOR_MINOR = [MAJOR, MINOR].join('.')
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: sprout-mxml-bundle
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.1
4
+ version: 0.1.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Pattern Park
@@ -9,7 +9,7 @@ autorequire: sprout/mxml
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
 
12
- date: 2008-02-18 00:00:00 -08:00
12
+ date: 2008-02-23 00:00:00 -08:00
13
13
  default_executable:
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
@@ -40,6 +40,7 @@ extra_rdoc_files:
40
40
  - README
41
41
  files:
42
42
  - lib
43
+ - pkg
43
44
  - rakefile.rb
44
45
  - README
45
46
  - test