airake 0.2.13 → 0.2.14

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.
@@ -1,3 +1,8 @@
1
+ == 0.2.14 2007-12-14
2
+
3
+ * Fixing adt package task to include storetype param (new in beta 3)
4
+ * Fixing adt certificate task
5
+
1
6
  == 0.2.13 2007-12-05
2
7
 
3
8
  * Refactoring require asserts
@@ -28,10 +28,14 @@ module Airake #:nodoc:
28
28
  # Get the ADT package command
29
29
  def package
30
30
  command = []
31
- command << @adt_path
31
+ command << @adt_path
32
+ command << "-package"
32
33
  command << @adt_extra_opts
33
- command << "-package"
34
- command << "-certificate #{certificate}" unless @certificate.blank?
34
+
35
+ unless @certificate.blank?
36
+ command << "-keystore #{certificate}"
37
+ command << "-storetype pkcs12"
38
+ end
35
39
  command << escape(relative_path(@air_path, @base_dir))
36
40
  command << escape(relative_path(@appxml_path, @base_dir))
37
41
  command << escape(relative_path(@swf_path, @base_dir))
@@ -55,7 +59,7 @@ module Airake #:nodoc:
55
59
  #
56
60
  def generate_certificate(common_name, pfx_file, key_type, password, optionals = {})
57
61
  command = []
58
- command << path
62
+ command << @adt_path
59
63
  command << "-certificate"
60
64
  command << "-cn #{common_name}"
61
65
  command << "-ou #{optionals[:org_unit]}" if !optionals[:org_unit].blank?
@@ -2,7 +2,7 @@ module Airake #:nodoc:
2
2
  module VERSION #:nodoc:
3
3
  MAJOR = 0
4
4
  MINOR = 2
5
- TINY = 13
5
+ TINY = 14
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.13
7
- date: 2007-12-05 00:00:00 -05:00
6
+ version: 0.2.14
7
+ date: 2007-12-14 00:00:00 -05:00
8
8
  summary: Tasks and generators for Adobe AIR apps
9
9
  require_paths:
10
10
  - lib