airake 0.2.11 → 0.2.12

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/History.txt CHANGED
@@ -1,3 +1,8 @@
1
+ == 0.2.11 2007-11-11
2
+
3
+ * Fixing adl task
4
+ * Adding air:package_only task
5
+
1
6
  == 0.2.11 2007-11-10
2
7
 
3
8
  * Fixing source paths under lib
@@ -81,7 +81,10 @@ namespace :air do
81
81
  end
82
82
 
83
83
  desc "Package"
84
- task :package => [ :check_certificate, :compile ] do
84
+ task :package => [ :check_certificate, :compile, :package_only ] do; end
85
+
86
+ desc "Package only"
87
+ task :package_only do
85
88
  project = Airake::Project.new_from_rake(ENV)
86
89
  Airake::Runner.run(project.adt, :package)
87
90
  end
@@ -91,9 +94,9 @@ namespace :air do
91
94
  end
92
95
 
93
96
  desc "Launch ADL"
94
- task :adl => [ :set_debug, :compile, :just_adl ] do; end
97
+ task :adl => [ :set_debug, :compile, :adl_only ] do; end
95
98
 
96
- desc "Launch ADL (don't compile)"
99
+ desc "Launch ADL only"
97
100
  task :adl_only do
98
101
  project = Airake::Project.new_from_rake(ENV)
99
102
  Airake::Runner.run(project.adl, :launch)
@@ -2,7 +2,7 @@ module Airake #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 11
5
+ TINY = 12
6
6
 
7
7
  STRING = [MAJOR, MINOR, TINY].join('.')
8
8
  end
metadata CHANGED
@@ -3,8 +3,8 @@ rubygems_version: 0.9.4
3
3
  specification_version: 1
4
4
  name: airake
5
5
  version: !ruby/object:Gem::Version
6
- version: 0.2.11
7
- date: 2007-11-10 00:00:00 -05:00
6
+ version: 0.2.12
7
+ date: 2007-11-11 00:00:00 -05:00
8
8
  summary: Tasks and generators for Adobe AIR apps
9
9
  require_paths:
10
10
  - lib