fastlane 2.61.0.beta.20171005010003 → 2.61.0.beta.20171006010004
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: 037bae64a6f4a5dff6a606684caf2fd56875f2f6
|
4
|
+
data.tar.gz: fd553320150928a447b902cb7234ef95faf81127
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4ad08b47eecd2c3c0a6398ef1e20a0c9b68356aa14cd476d226fc209370f858cb69862b16fb2bdd349fc3e59a9f30e8642fe0bf4034345905d0fa2528a3bb464
|
7
|
+
data.tar.gz: 42b879aeffcb4787eb06a8626d9edd322e29f6ab80b417042bd905ae1bd23e66b336e4d2a51fef36051cb5e3e7a5bca34ca2a84ddacb97cce774954f52706455
|
@@ -5,6 +5,7 @@ module Fastlane
|
|
5
5
|
SIGH_PROFILE_PATHS = :SIGH_PROFILE_PATHS
|
6
6
|
SIGH_UDID = :SIGH_UDID # deprecated
|
7
7
|
SIGH_UUID = :SIGH_UUID
|
8
|
+
SIGH_NAME = :SIGH_NAME
|
8
9
|
SIGH_PROFILE_TYPE = :SIGH_PROFILE_TYPE
|
9
10
|
end
|
10
11
|
|
@@ -22,7 +23,9 @@ module Fastlane
|
|
22
23
|
Actions.lane_context[SharedValues::SIGH_PROFILE_PATHS] << path
|
23
24
|
|
24
25
|
uuid = ENV["SIGH_UUID"] || ENV["SIGH_UDID"] # the UUID of the profile
|
26
|
+
name = ENV["SIGH_NAME"] # the name of the profile
|
25
27
|
Actions.lane_context[SharedValues::SIGH_UUID] = Actions.lane_context[SharedValues::SIGH_UDID] = uuid if uuid
|
28
|
+
Actions.lane_context[SharedValues::SIGH_NAME] = Actions.lane_context[SharedValues::SIGH_NAME] = name if name
|
26
29
|
|
27
30
|
set_profile_type(values, ENV["SIGH_PROFILE_ENTERPRISE"])
|
28
31
|
|
@@ -9,6 +9,7 @@ module Fastlane
|
|
9
9
|
end
|
10
10
|
|
11
11
|
puts env_info
|
12
|
+
UI.important("Take notice that this output may contain sensitive information, or simply information that you don't want to make public.")
|
12
13
|
if FastlaneCore::Helper.mac? && UI.interactive? && UI.confirm("🙄 Wow, that's a lot of markdown text... should fastlane put it into your clipboard, so you can easily paste it on GitHub?")
|
13
14
|
copy_to_clipboard(env_info)
|
14
15
|
UI.success("Successfully copied markdown into your clipboard 🎨")
|
@@ -37,6 +37,11 @@ module FastlaneCore
|
|
37
37
|
parse(path).fetch("UUID")
|
38
38
|
end
|
39
39
|
|
40
|
+
# @return [String] The Name of the given provisioning profile
|
41
|
+
def name(path)
|
42
|
+
parse(path).fetch("Name")
|
43
|
+
end
|
44
|
+
|
40
45
|
def profiles_path
|
41
46
|
path = File.expand_path("~") + "/Library/MobileDevice/Provisioning Profiles/"
|
42
47
|
# If the directory doesn't exist, create it first
|
data/sigh/lib/sigh/manager.rb
CHANGED
@@ -36,7 +36,9 @@ module Sigh
|
|
36
36
|
|
37
37
|
def self.install_profile(profile)
|
38
38
|
uuid = FastlaneCore::ProvisioningProfile.uuid(profile)
|
39
|
+
name = FastlaneCore::ProvisioningProfile.name(profile)
|
39
40
|
ENV["SIGH_UDID"] = ENV["SIGH_UUID"] = uuid if uuid
|
41
|
+
ENV["SIGH_NAME"] = name if name
|
40
42
|
|
41
43
|
FastlaneCore::ProvisioningProfile.install(profile)
|
42
44
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: fastlane
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.61.0.beta.
|
4
|
+
version: 2.61.0.beta.20171006010004
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Felix Krause
|
@@ -15,7 +15,7 @@ authors:
|
|
15
15
|
autorequire:
|
16
16
|
bindir: bin
|
17
17
|
cert_chain: []
|
18
|
-
date: 2017-10-
|
18
|
+
date: 2017-10-06 00:00:00.000000000 Z
|
19
19
|
dependencies:
|
20
20
|
- !ruby/object:Gem::Dependency
|
21
21
|
name: slack-notifier
|