tidyflash 0.1.6 → 0.1.7
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/Rakefile +1 -1
- data/templates/project/rakefile.rb +4 -1
- data/tidyflash.gemspec +1 -1
- metadata +2 -2
data/Rakefile
CHANGED
@@ -2,7 +2,7 @@ require 'rubygems'
|
|
2
2
|
require 'rake'
|
3
3
|
require 'echoe'
|
4
4
|
|
5
|
-
Echoe.new('tidyflash', '0.1.
|
5
|
+
Echoe.new('tidyflash', '0.1.7') do |p|
|
6
6
|
p.description = "Tidy Flash - an ActionScript framework for people who love Ruby"
|
7
7
|
p.url = "http://github.com/michaelforrest/tidy"
|
8
8
|
p.author = "Michael Forrest"
|
@@ -1,6 +1,6 @@
|
|
1
1
|
require 'rubygems'
|
2
2
|
require 'tidy/compile'
|
3
|
-
|
3
|
+
require 'tidy/air_packager'
|
4
4
|
#desc 'compile and run air app (needs a couple of extra files manually created so far)'
|
5
5
|
#task :air do |t|
|
6
6
|
# Compile.air :main=>"src/Fubuntu.as", :output=>"Fubuntu-air"
|
@@ -18,6 +18,9 @@ task :app do
|
|
18
18
|
:version=> "0.1")
|
19
19
|
|
20
20
|
end
|
21
|
+
task :package do
|
22
|
+
Tidy::AirPackager.package("<%= @project_name.underscore %>", %w[])
|
23
|
+
end
|
21
24
|
|
22
25
|
#desc "regression tester"
|
23
26
|
#regress :regress do |t|
|
data/tidyflash.gemspec
CHANGED