buildr-as3 0.2.12 → 0.2.13
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/Gemfile +1 -0
- data/VERSION +1 -1
- data/buildr-as3.gemspec +6 -4
- data/lib/buildr/as3/compiler/task.rb +23 -0
- data/lib/buildr/as3/test/flexunit4.rb +3 -3
- data/test/helper.rb +1 -1
- data/test/test_buildr_as3.rb +1 -1
- metadata +66 -60
- data/index.html +0 -16
- data/pages/pages.css +0 -31
data/Gemfile
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.2.
|
1
|
+
0.2.13
|
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.
|
8
|
+
s.version = "0.2.13"
|
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-
|
12
|
+
s.date = %q{2011-07-08}
|
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}
|
@@ -27,7 +27,6 @@ Gem::Specification.new do |s|
|
|
27
27
|
"VERSION",
|
28
28
|
"bin/buildr-as3",
|
29
29
|
"buildr-as3.gemspec",
|
30
|
-
"index.html",
|
31
30
|
"lib/buildr/as3.rb",
|
32
31
|
"lib/buildr/as3/compiler.rb",
|
33
32
|
"lib/buildr/as3/compiler/aircompc.rb",
|
@@ -35,6 +34,7 @@ Gem::Specification.new do |s|
|
|
35
34
|
"lib/buildr/as3/compiler/base.rb",
|
36
35
|
"lib/buildr/as3/compiler/compc.rb",
|
37
36
|
"lib/buildr/as3/compiler/mxmlc.rb",
|
37
|
+
"lib/buildr/as3/compiler/task.rb",
|
38
38
|
"lib/buildr/as3/doc.rb",
|
39
39
|
"lib/buildr/as3/doc/asdoc.rb",
|
40
40
|
"lib/buildr/as3/ide.rb",
|
@@ -53,7 +53,6 @@ Gem::Specification.new do |s|
|
|
53
53
|
"lib/buildr/as3/toolkits/apparat.rb",
|
54
54
|
"lib/buildr/as3/toolkits/base.rb",
|
55
55
|
"lib/buildr/as3/toolkits/flexsdk.rb",
|
56
|
-
"pages/pages.css",
|
57
56
|
"test/helper.rb",
|
58
57
|
"test/test_buildr_as3.rb"
|
59
58
|
]
|
@@ -74,12 +73,14 @@ Gem::Specification.new do |s|
|
|
74
73
|
s.add_development_dependency(%q<shoulda>, [">= 0"])
|
75
74
|
s.add_development_dependency(%q<bundler>, ["~> 1.0.0"])
|
76
75
|
s.add_development_dependency(%q<jeweler>, ["~> 1.5.2"])
|
76
|
+
s.add_development_dependency(%q<buildr>, ["~> 1.4.6"])
|
77
77
|
s.add_development_dependency(%q<rcov>, [">= 0"])
|
78
78
|
s.add_runtime_dependency(%q<buildr>, [">= 1.4.5"])
|
79
79
|
else
|
80
80
|
s.add_dependency(%q<shoulda>, [">= 0"])
|
81
81
|
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
82
82
|
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
83
|
+
s.add_dependency(%q<buildr>, ["~> 1.4.6"])
|
83
84
|
s.add_dependency(%q<rcov>, [">= 0"])
|
84
85
|
s.add_dependency(%q<buildr>, [">= 1.4.5"])
|
85
86
|
end
|
@@ -87,6 +88,7 @@ Gem::Specification.new do |s|
|
|
87
88
|
s.add_dependency(%q<shoulda>, [">= 0"])
|
88
89
|
s.add_dependency(%q<bundler>, ["~> 1.0.0"])
|
89
90
|
s.add_dependency(%q<jeweler>, ["~> 1.5.2"])
|
91
|
+
s.add_dependency(%q<buildr>, ["~> 1.4.6"])
|
90
92
|
s.add_dependency(%q<rcov>, [">= 0"])
|
91
93
|
s.add_dependency(%q<buildr>, [">= 1.4.5"])
|
92
94
|
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
#
|
2
|
+
# Copyright (C) 2011 by Dominic Graefen / http://devboy.org
|
3
|
+
#
|
4
|
+
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
5
|
+
# of this software and associated documentation files (the "Software"), to deal
|
6
|
+
# in the Software without restriction, including without limitation the rights
|
7
|
+
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
8
|
+
# copies of the Software, and to permit persons to whom the Software is
|
9
|
+
# furnished to do so, subject to the following conditions:
|
10
|
+
#
|
11
|
+
# The above copyright notice and this permission notice shall be included in
|
12
|
+
# all copies or substantial portions of the Software.
|
13
|
+
#
|
14
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
15
|
+
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
16
|
+
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
17
|
+
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
18
|
+
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
19
|
+
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
20
|
+
# THE SOFTWARE.
|
21
|
+
#
|
22
|
+
|
23
|
+
# Let's enhance the CompileTask here!
|
@@ -95,9 +95,9 @@ module Buildr
|
|
95
95
|
:classpath => taskdef.to_s
|
96
96
|
|
97
97
|
ant.flexunit :player => player,
|
98
|
-
:haltonFailure =>
|
99
|
-
:verbose =>
|
100
|
-
:localTrusted =>
|
98
|
+
:haltonFailure => options[:haltonFailure] || false,
|
99
|
+
:verbose => options[:verbose] || false,
|
100
|
+
:localTrusted => options[:localTrusted] || true,
|
101
101
|
:swf => task.project.get_as3_output(task.project.test.compile.target, task.project.test.compile.options)
|
102
102
|
|
103
103
|
ant.taskdef :name=>'junitreport',
|
data/test/helper.rb
CHANGED
data/test/test_buildr_as3.rb
CHANGED
metadata
CHANGED
@@ -1,83 +1,92 @@
|
|
1
|
-
--- !ruby/object:Gem::Specification
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
2
|
name: buildr-as3
|
3
|
-
version: !ruby/object:Gem::Version
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.2.13
|
4
5
|
prerelease:
|
5
|
-
version: 0.2.12
|
6
6
|
platform: ruby
|
7
|
-
authors:
|
7
|
+
authors:
|
8
8
|
- Dominic Graefen
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
|
13
|
-
date: 2011-05-31 00:00:00 +02:00
|
12
|
+
date: 2011-07-08 00:00:00.000000000 +02:00
|
14
13
|
default_executable: buildr-as3
|
15
|
-
dependencies:
|
16
|
-
- !ruby/object:Gem::Dependency
|
14
|
+
dependencies:
|
15
|
+
- !ruby/object:Gem::Dependency
|
17
16
|
name: shoulda
|
18
|
-
requirement: &
|
17
|
+
requirement: &2152235160 !ruby/object:Gem::Requirement
|
19
18
|
none: false
|
20
|
-
requirements:
|
21
|
-
- -
|
22
|
-
- !ruby/object:Gem::Version
|
23
|
-
version:
|
19
|
+
requirements:
|
20
|
+
- - ! '>='
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: '0'
|
24
23
|
type: :development
|
25
24
|
prerelease: false
|
26
|
-
version_requirements: *
|
27
|
-
- !ruby/object:Gem::Dependency
|
25
|
+
version_requirements: *2152235160
|
26
|
+
- !ruby/object:Gem::Dependency
|
28
27
|
name: bundler
|
29
|
-
requirement: &
|
28
|
+
requirement: &2152215180 !ruby/object:Gem::Requirement
|
30
29
|
none: false
|
31
|
-
requirements:
|
30
|
+
requirements:
|
32
31
|
- - ~>
|
33
|
-
- !ruby/object:Gem::Version
|
32
|
+
- !ruby/object:Gem::Version
|
34
33
|
version: 1.0.0
|
35
34
|
type: :development
|
36
35
|
prerelease: false
|
37
|
-
version_requirements: *
|
38
|
-
- !ruby/object:Gem::Dependency
|
36
|
+
version_requirements: *2152215180
|
37
|
+
- !ruby/object:Gem::Dependency
|
39
38
|
name: jeweler
|
40
|
-
requirement: &
|
39
|
+
requirement: &2152212920 !ruby/object:Gem::Requirement
|
41
40
|
none: false
|
42
|
-
requirements:
|
41
|
+
requirements:
|
43
42
|
- - ~>
|
44
|
-
- !ruby/object:Gem::Version
|
43
|
+
- !ruby/object:Gem::Version
|
45
44
|
version: 1.5.2
|
46
45
|
type: :development
|
47
46
|
prerelease: false
|
48
|
-
version_requirements: *
|
49
|
-
- !ruby/object:Gem::Dependency
|
47
|
+
version_requirements: *2152212920
|
48
|
+
- !ruby/object:Gem::Dependency
|
49
|
+
name: buildr
|
50
|
+
requirement: &2152210660 !ruby/object:Gem::Requirement
|
51
|
+
none: false
|
52
|
+
requirements:
|
53
|
+
- - ~>
|
54
|
+
- !ruby/object:Gem::Version
|
55
|
+
version: 1.4.6
|
56
|
+
type: :development
|
57
|
+
prerelease: false
|
58
|
+
version_requirements: *2152210660
|
59
|
+
- !ruby/object:Gem::Dependency
|
50
60
|
name: rcov
|
51
|
-
requirement: &
|
61
|
+
requirement: &2152208140 !ruby/object:Gem::Requirement
|
52
62
|
none: false
|
53
|
-
requirements:
|
54
|
-
- -
|
55
|
-
- !ruby/object:Gem::Version
|
56
|
-
version:
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
57
67
|
type: :development
|
58
68
|
prerelease: false
|
59
|
-
version_requirements: *
|
60
|
-
- !ruby/object:Gem::Dependency
|
69
|
+
version_requirements: *2152208140
|
70
|
+
- !ruby/object:Gem::Dependency
|
61
71
|
name: buildr
|
62
|
-
requirement: &
|
72
|
+
requirement: &2152205040 !ruby/object:Gem::Requirement
|
63
73
|
none: false
|
64
|
-
requirements:
|
65
|
-
- -
|
66
|
-
- !ruby/object:Gem::Version
|
74
|
+
requirements:
|
75
|
+
- - ! '>='
|
76
|
+
- !ruby/object:Gem::Version
|
67
77
|
version: 1.4.5
|
68
78
|
type: :runtime
|
69
79
|
prerelease: false
|
70
|
-
version_requirements: *
|
80
|
+
version_requirements: *2152205040
|
71
81
|
description: Build like you code - now supporting ActionScript 3 & Flex
|
72
82
|
email: dominic @nospam@ devboy.org
|
73
|
-
executables:
|
83
|
+
executables:
|
74
84
|
- buildr-as3
|
75
85
|
extensions: []
|
76
|
-
|
77
|
-
extra_rdoc_files:
|
86
|
+
extra_rdoc_files:
|
78
87
|
- LICENSE.txt
|
79
88
|
- README.rdoc
|
80
|
-
files:
|
89
|
+
files:
|
81
90
|
- .document
|
82
91
|
- Gemfile
|
83
92
|
- LICENSE.txt
|
@@ -86,7 +95,6 @@ files:
|
|
86
95
|
- VERSION
|
87
96
|
- bin/buildr-as3
|
88
97
|
- buildr-as3.gemspec
|
89
|
-
- index.html
|
90
98
|
- lib/buildr/as3.rb
|
91
99
|
- lib/buildr/as3/compiler.rb
|
92
100
|
- lib/buildr/as3/compiler/aircompc.rb
|
@@ -94,6 +102,7 @@ files:
|
|
94
102
|
- lib/buildr/as3/compiler/base.rb
|
95
103
|
- lib/buildr/as3/compiler/compc.rb
|
96
104
|
- lib/buildr/as3/compiler/mxmlc.rb
|
105
|
+
- lib/buildr/as3/compiler/task.rb
|
97
106
|
- lib/buildr/as3/doc.rb
|
98
107
|
- lib/buildr/as3/doc/asdoc.rb
|
99
108
|
- lib/buildr/as3/ide.rb
|
@@ -112,40 +121,37 @@ files:
|
|
112
121
|
- lib/buildr/as3/toolkits/apparat.rb
|
113
122
|
- lib/buildr/as3/toolkits/base.rb
|
114
123
|
- lib/buildr/as3/toolkits/flexsdk.rb
|
115
|
-
- pages/pages.css
|
116
124
|
- test/helper.rb
|
117
125
|
- test/test_buildr_as3.rb
|
118
126
|
has_rdoc: true
|
119
127
|
homepage: http://github.com/devboy/buildr_as3
|
120
|
-
licenses:
|
128
|
+
licenses:
|
121
129
|
- MIT
|
122
130
|
post_install_message:
|
123
131
|
rdoc_options: []
|
124
|
-
|
125
|
-
require_paths:
|
132
|
+
require_paths:
|
126
133
|
- lib
|
127
|
-
required_ruby_version: !ruby/object:Gem::Requirement
|
134
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
128
135
|
none: false
|
129
|
-
requirements:
|
130
|
-
- -
|
131
|
-
- !ruby/object:Gem::Version
|
132
|
-
|
133
|
-
segments:
|
136
|
+
requirements:
|
137
|
+
- - ! '>='
|
138
|
+
- !ruby/object:Gem::Version
|
139
|
+
version: '0'
|
140
|
+
segments:
|
134
141
|
- 0
|
135
|
-
|
136
|
-
required_rubygems_version: !ruby/object:Gem::Requirement
|
142
|
+
hash: -3972428294921784221
|
143
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
137
144
|
none: false
|
138
|
-
requirements:
|
139
|
-
- -
|
140
|
-
- !ruby/object:Gem::Version
|
141
|
-
version:
|
145
|
+
requirements:
|
146
|
+
- - ! '>='
|
147
|
+
- !ruby/object:Gem::Version
|
148
|
+
version: '0'
|
142
149
|
requirements: []
|
143
|
-
|
144
150
|
rubyforge_project:
|
145
151
|
rubygems_version: 1.6.2
|
146
152
|
signing_key:
|
147
153
|
specification_version: 3
|
148
154
|
summary: Buildr extension to allow ActionScript3/Flex development.
|
149
|
-
test_files:
|
155
|
+
test_files:
|
150
156
|
- test/helper.rb
|
151
157
|
- test/test_buildr_as3.rb
|
data/index.html
DELETED
@@ -1,16 +0,0 @@
|
|
1
|
-
<!DOCTYPE html>
|
2
|
-
<html>
|
3
|
-
<head>
|
4
|
-
<title>buildr-as3</title>
|
5
|
-
<link rel="stylesheet" type="text/css" href="pages/pages.css" />
|
6
|
-
</head>
|
7
|
-
<body>
|
8
|
-
<header>
|
9
|
-
<h1>buildr-as3</h1>
|
10
|
-
<h2>Build like you code - with ActionScript & Flex</h2>
|
11
|
-
</header>
|
12
|
-
<section>
|
13
|
-
<h1></h1>
|
14
|
-
</section>
|
15
|
-
</body>
|
16
|
-
</html>
|
data/pages/pages.css
DELETED
@@ -1,31 +0,0 @@
|
|
1
|
-
body {
|
2
|
-
font-family: Palatino, Georgia, serif;
|
3
|
-
font-size: 15px;
|
4
|
-
line-height: 22px;
|
5
|
-
color: #333333;
|
6
|
-
margin: 0 25px;
|
7
|
-
padding: 0;
|
8
|
-
max-width: 600px;
|
9
|
-
min-width: 450px;
|
10
|
-
background-color: #EEEEEF;
|
11
|
-
}
|
12
|
-
|
13
|
-
header {
|
14
|
-
padding: 0;
|
15
|
-
margin: 25px 0;
|
16
|
-
border-bottom: 2px solid #AAAAAA;
|
17
|
-
}
|
18
|
-
|
19
|
-
header h1 {
|
20
|
-
font-size: 66px;
|
21
|
-
line-height: 66px;
|
22
|
-
font-weight:bold;
|
23
|
-
padding:0;
|
24
|
-
margin:0;
|
25
|
-
}
|
26
|
-
|
27
|
-
header h2 {
|
28
|
-
font-size: 18px;
|
29
|
-
line-height: 14px;
|
30
|
-
margin:0;
|
31
|
-
}
|