ecb 0.0.24 → 0.0.25
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 +0 -10
- 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: cbe1bcf471c242f850f8dc9375dc12fcfbd67c99
|
4
|
+
data.tar.gz: f678fff7e974b5cac146cdcc30b34fcd7db6356e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe44b32d5c0374c68a0f6ded4885387846d453ea534646dcd36a060d0945eb22b730f9a3e91289cafe43a62638aab4182b9a8588c71b7dd67d66239b3642d5ed
|
7
|
+
data.tar.gz: a92064d3c6ca6549abe9ae864385ad2e2c06f9ce1424d9a4dad664d00863cef4d84a41c210e0476d6c8bc116195b09d4ae91741f6b424fa82b2c460107b61ae3
|
@@ -51,7 +51,6 @@ module Commands
|
|
51
51
|
config_repo_url = EcbSharedLib.prepare_config_repo(nil)
|
52
52
|
info = EcbSharedLib.read_repo_config(config_repo_url, config_name)
|
53
53
|
info_plist = info[:info_plist]
|
54
|
-
enterprise_info_plist = info[:enterprise_info_plist]
|
55
54
|
verbose = options[:verbose]
|
56
55
|
if (info_plist) then
|
57
56
|
puts ". Info plist....: " + info_plist if verbose
|
@@ -62,15 +61,6 @@ module Commands
|
|
62
61
|
plist_data.save_plist(info_plist)
|
63
62
|
end
|
64
63
|
end
|
65
|
-
if (enterprise_info_plist) then
|
66
|
-
puts ". Info plist....: " + enterprise_info_plist if verbose
|
67
|
-
plist_data = Plist::parse_xml(enterprise_info_plist)
|
68
|
-
if (build) then
|
69
|
-
plist_data["BuildIdentifier"] = build
|
70
|
-
puts ". buildindentifer....: " + build if verbose
|
71
|
-
plist_data.save_plist(enterprise_info_plist)
|
72
|
-
end
|
73
|
-
end
|
74
64
|
end
|
75
65
|
end
|
76
66
|
end
|
data/lib/info.rb
CHANGED