buildr-as3 0.1.12 → 0.1.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/README.rdoc +16 -1
- data/VERSION +1 -1
- data/buildr-as3.gemspec +1 -1
- data/lib/buildr/as3/ide/fdt4.rb +5 -4
- metadata +3 -3
data/README.rdoc
CHANGED
@@ -2,7 +2,22 @@
|
|
2
2
|
|
3
3
|
�build like you code� � now supporting ActionScript 3 & Flex
|
4
4
|
|
5
|
-
==
|
5
|
+
== Changelog
|
6
|
+
|
7
|
+
=== 0.1.13
|
8
|
+
|
9
|
+
* Fixed a bug in "as3:fdt4:generate" which would mess up files while creating symlinks.
|
10
|
+
|
11
|
+
=== 0.1.12
|
12
|
+
|
13
|
+
* Implemented a dependency file generation task ("as3:fdt4:generate") to create FDT4 classpath files for auto-completion.
|
14
|
+
|
15
|
+
=== 0.1.11
|
16
|
+
|
17
|
+
* Updated compiler-wrapper for Adobe AIR (":airmxmlc" & ":aircompc")
|
18
|
+
* Implemented packaging task for .air files "package(:air).sign(...).include(...)"
|
19
|
+
|
20
|
+
== Contributing to buildr_as3
|
6
21
|
|
7
22
|
* Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
|
8
23
|
* Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
0.1.
|
1
|
+
0.1.13
|
data/buildr-as3.gemspec
CHANGED
data/lib/buildr/as3/ide/fdt4.rb
CHANGED
@@ -41,7 +41,6 @@ module Buildr
|
|
41
41
|
project.task("as3:fdt4:generate") do
|
42
42
|
fail("Cannot create fdt4 projects on Windows machines, no support for symlinks.") unless !Buildr::Util.win_os?
|
43
43
|
if [:mxmlc,:compc,:airmxmlc,:aircompc].include? project.compile.compiler
|
44
|
-
|
45
44
|
output = project.base_dir + "/.settings/com.powerflasher.fdt.classpath"
|
46
45
|
puts "Writing FDT4 classpath file: #{output}"
|
47
46
|
puts "WARNING: This will create symlinks in #{project.path_to(:lib,:main,:as3)} as FDT4 doesn't support referencing files outside of the project folder."
|
@@ -101,8 +100,10 @@ module Buildr
|
|
101
100
|
path = dependency.to_s
|
102
101
|
end
|
103
102
|
target = project.path_to(:lib,:main,:as3) + "/" + File.basename(path)
|
104
|
-
|
105
|
-
|
103
|
+
unless target != path
|
104
|
+
File.delete(target) if File.exists?(target)
|
105
|
+
File.symlink path, target
|
106
|
+
end
|
106
107
|
target
|
107
108
|
end
|
108
109
|
|
@@ -136,4 +137,4 @@ module Buildr
|
|
136
137
|
class Project
|
137
138
|
include Buildr::AS3::IDE::FDT4::Tasks
|
138
139
|
end
|
139
|
-
end
|
140
|
+
end
|
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:
|
4
|
+
hash: 1
|
5
5
|
prerelease:
|
6
6
|
segments:
|
7
7
|
- 0
|
8
8
|
- 1
|
9
|
-
-
|
10
|
-
version: 0.1.
|
9
|
+
- 13
|
10
|
+
version: 0.1.13
|
11
11
|
platform: ruby
|
12
12
|
authors:
|
13
13
|
- Dominic Graefen
|