ecb 0.0.12 → 0.0.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.
- checksums.yaml +4 -4
- data/lib/commands/update_plist.rb +2 -5
- data/lib/info.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2993d0c29ea0ec3b7d8fdb2c6f005b1ff4a44255
|
4
|
+
data.tar.gz: 630331ff0be7a3979b0c826463b6cad57f58c6ab
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dc55fcdfb90c881a2c89a2c26cb200dc68e2ef048c7af19e0e4bede0fbe93ec6e42933c1e702e8b172dd5d3932851c732cd6ea7f62269f46baaf08e7edab9592
|
7
|
+
data.tar.gz: 6f1defcc1b3f21e829425b3d735e300ec3543c67b9e68a63434591127d95d36807ca74d8c273911b2811918ee4341be46622197759c673995603d3f79393da98
|
@@ -20,6 +20,7 @@ module Commands
|
|
20
20
|
def required_options
|
21
21
|
@required_options ||= Set.new [
|
22
22
|
:config,
|
23
|
+
:build,
|
23
24
|
]
|
24
25
|
end
|
25
26
|
|
@@ -29,12 +30,9 @@ module Commands
|
|
29
30
|
opts.on('-c', "--config name", "Required - Name of the config we are building from.") do |v|
|
30
31
|
options[:config] = v
|
31
32
|
end
|
32
|
-
opts.on('-b', "--build number", "
|
33
|
+
opts.on('-b', "--build number", "Required - build number used to update plist") do |v|
|
33
34
|
options[:build] = v
|
34
35
|
end
|
35
|
-
opts.on('-i', "--identifier bundler identifier", "Optional - Bundle Name to be set") do |v|
|
36
|
-
options[:identifier] = v
|
37
|
-
end
|
38
36
|
opts.on('-v', "--verbose", "Display passed data") do |v|
|
39
37
|
options[:verbose] = true
|
40
38
|
end
|
@@ -52,7 +50,6 @@ module Commands
|
|
52
50
|
info_plist = info[:info_plist]
|
53
51
|
#require "byebug"; byebug
|
54
52
|
enterprise_info_plist = info[:enterprise_info_plist]
|
55
|
-
identifier = options[:identifier]
|
56
53
|
verbose = options[:verbose]
|
57
54
|
if (info_plist) then
|
58
55
|
puts ". Info plist....: " + info_plist if verbose
|
data/lib/info.rb
CHANGED