fastlane_core 0.13.0 → 0.13.1
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c55d019bd766d0ce92e3f8b3334be63e3f8a7a4d
|
4
|
+
data.tar.gz: 01814e896e25c5d79501dc1c6aade3dc40fc268f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dff01817eb4e419acc64fd00b80805d95105e9d77a78db26232a96954cea8446095b89970858ae9ae83afb9f8e4190613d862fd7c4030b40326598efe2985229
|
7
|
+
data.tar.gz: 8a964fe17413dac10113804263d3fd8bfc580af2cf94060d0b4586377e131c408c13a65586c72df48f3a7d52c547586bb13902b6cf474ddab7891489fc431101
|
@@ -13,6 +13,7 @@ module FastlaneCore
|
|
13
13
|
|
14
14
|
raise "Short option #{short_option} already taken for key #{option.key}".red if short_codes.include?short_option
|
15
15
|
raise "-v is already used for the version (key #{option.key})".red if short_option == "-v"
|
16
|
+
raise "-h is already used for the help screen (key #{option.key})".red if short_option == "-h"
|
16
17
|
|
17
18
|
short_codes << short_option
|
18
19
|
global_option short_option, "--#{option.key} #{appendix}", type, (option.description + " (#{option.env_name})")
|
@@ -26,7 +26,6 @@ module FastlaneCore
|
|
26
26
|
|
27
27
|
plist = Plist::parse_xml(`security cms -D -i '#{path}'`)
|
28
28
|
if (plist || []).count > 5
|
29
|
-
Helper.log.info("Provisioning profile of app '#{plist['AppIDName']}' with the name '#{plist['Name']}' successfully analysed.".green)
|
30
29
|
plist
|
31
30
|
else
|
32
31
|
Helper.log.error("Error parsing provisioning profile at path '#{path}'".red)
|
@@ -51,14 +50,15 @@ module FastlaneCore
|
|
51
50
|
FileUtils.mkdir_p(profile_path)
|
52
51
|
end
|
53
52
|
|
54
|
-
|
55
|
-
|
56
|
-
|
57
|
-
|
58
|
-
|
59
|
-
|
60
|
-
raise "Failed installation of provisioning profile at location: #{destination}".red
|
53
|
+
if path != destination
|
54
|
+
# copy to Xcode provisioning profile directory
|
55
|
+
FileUtils.copy(path, destination)
|
56
|
+
unless File.exist?(destination)
|
57
|
+
raise "Failed installation of provisioning profile at location: '#{destination}'".red
|
58
|
+
end
|
61
59
|
end
|
60
|
+
|
61
|
+
true
|
62
62
|
end
|
63
63
|
end
|
64
64
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane_core
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.13.
|
4
|
+
version: 0.13.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2015-08-
|
11
|
+
date: 2015-08-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: json
|
@@ -128,14 +128,14 @@ dependencies:
|
|
128
128
|
requirements:
|
129
129
|
- - ">="
|
130
130
|
- !ruby/object:Gem::Version
|
131
|
-
version: 0.7.
|
131
|
+
version: 0.7.2
|
132
132
|
type: :runtime
|
133
133
|
prerelease: false
|
134
134
|
version_requirements: !ruby/object:Gem::Requirement
|
135
135
|
requirements:
|
136
136
|
- - ">="
|
137
137
|
- !ruby/object:Gem::Version
|
138
|
-
version: 0.7.
|
138
|
+
version: 0.7.2
|
139
139
|
- !ruby/object:Gem::Dependency
|
140
140
|
name: phantomjs
|
141
141
|
requirement: !ruby/object:Gem::Requirement
|