buildr-as3 0.2.0 → 0.2.1

Sign up to get free protection for your applications and to get access to all the features.
data/README.rdoc CHANGED
@@ -14,8 +14,8 @@
14
14
 
15
15
  = Changelog
16
16
 
17
- == 0.1.28
18
-
17
+ == 0.2.0
18
+ * [FEATURE] FlexUnit4 support has been added.
19
19
  * [CLOSED] Issue 10: Added packaging task for unsigned AIR files *.airi
20
20
  * [CLOSED] Issue 19: Added conditional compilation arguments (CONFIG::debug & CONFIG::environment) which reflect the buildr settings.
21
21
  * [CLOSED] Issue 4: Alchemy will be supported on demand
data/VERSION CHANGED
@@ -1 +1 @@
1
- 0.2.0
1
+ 0.2.1
data/buildr-as3.gemspec CHANGED
@@ -5,11 +5,11 @@
5
5
 
6
6
  Gem::Specification.new do |s|
7
7
  s.name = %q{buildr-as3}
8
- s.version = "0.2.0"
8
+ s.version = "0.2.1"
9
9
 
10
10
  s.required_rubygems_version = Gem::Requirement.new(">= 0") if s.respond_to? :required_rubygems_version=
11
11
  s.authors = ["Dominic Graefen"]
12
- s.date = %q{2011-04-15}
12
+ s.date = %q{2011-04-16}
13
13
  s.default_executable = %q{buildr-as3}
14
14
  s.description = %q{Build like you code - now supporting ActionScript 3 & Flex}
15
15
  s.email = %q{dominic @nospam@ devboy.org}
@@ -77,9 +77,8 @@ module Buildr
77
77
  taskdef = Buildr.artifact(FlexUnit4.flexunit_taskdef)
78
78
  taskdef.invoke
79
79
 
80
- player = "air" if [:airmxmlc, :airompc].include?(task.project.compile.compiler)
80
+ player = "air" if [:airmxmlc, :airompc].include?(task.project.compile.compiler) || options[:player] == "air"
81
81
  player ||= "flash"
82
- player || options[:player]
83
82
 
84
83
  Buildr.ant("flexunit4test") do |ant|
85
84
 
@@ -98,6 +97,7 @@ module Buildr
98
97
  ant.taskdef :name=>'junitreport',
99
98
  :classname=>'org.apache.tools.ant.taskdefs.optional.junit.XMLResultAggregator',
100
99
  :classpath=>Buildr.artifacts(JUnit.ant_taskdef).each(&:invoke).map(&:to_s).join(File::PATH_SEPARATOR)
100
+
101
101
  unless options[:htmlreport] == false
102
102
  ant.junitreport :todir => report_dir do
103
103
  ant.fileset :dir => report_dir do
metadata CHANGED
@@ -1,13 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: buildr-as3
3
3
  version: !ruby/object:Gem::Version
4
- hash: 23
4
+ hash: 21
5
5
  prerelease:
6
6
  segments:
7
7
  - 0
8
8
  - 2
9
- - 0
10
- version: 0.2.0
9
+ - 1
10
+ version: 0.2.1
11
11
  platform: ruby
12
12
  authors:
13
13
  - Dominic Graefen
@@ -15,7 +15,7 @@ autorequire:
15
15
  bindir: bin
16
16
  cert_chain: []
17
17
 
18
- date: 2011-04-15 00:00:00 +02:00
18
+ date: 2011-04-16 00:00:00 +02:00
19
19
  default_executable: buildr-as3
20
20
  dependencies:
21
21
  - !ruby/object:Gem::Dependency