airake 0.2.13 → 0.2.14
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +5 -0
- data/lib/airake/commands/adt.rb +8 -4
- data/lib/airake/version.rb +1 -1
- metadata +2 -2
data/History.txt
CHANGED
data/lib/airake/commands/adt.rb
CHANGED
@@ -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
|
-
|
34
|
-
|
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 <<
|
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?
|
data/lib/airake/version.rb
CHANGED
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.
|
7
|
-
date: 2007-12-
|
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
|