Class: Fastlane::Actions::GetProvisioningProfileAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, authors, deprecated_notes, lane_context, method_missing, other_action, output, return_type, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
51
52
53
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 51
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
63
64
65
66
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 63
def self.available_options
require 'sigh'
Sigh::Options.available_options
end
|
.category ⇒ Object
84
85
86
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 84
def self.category
:code_signing
end
|
.description ⇒ Object
47
48
49
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 47
def self.description
"Generates a provisioning profile, saving it in the current folder (via _sigh_)"
end
|
.details ⇒ Object
59
60
61
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 59
def self.details
"**Note**: It is recommended to use [match](https://docs.fastlane.tools/actions/match/) according to the [codesigning.guide](https://codesigning.guide) for generating and maintaining your provisioning profiles. Use _sigh_ directly only if you want full control over what's going on and know more about codesigning."
end
|
.example_code ⇒ Object
72
73
74
75
76
77
78
79
80
81
82
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 72
def self.example_code
[
'get_provisioning_profile',
'sigh # alias for "get_provisioning_profile"',
'get_provisioning_profile(
adhoc: true,
force: true,
filename: "myFile.mobileprovision"
)'
]
end
|
.is_supported?(platform) ⇒ Boolean
68
69
70
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 68
def self.is_supported?(platform)
[:ios, :mac].include?(platform)
end
|
.return_value ⇒ Object
55
56
57
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 55
def self.return_value
"The UUID of the profile sigh just fetched/generated"
end
|
.set_profile_type(values, enterprise) ⇒ Object
35
36
37
38
39
40
41
42
43
44
45
|
# File 'fastlane/lib/fastlane/actions/get_provisioning_profile.rb', line 35
def self.set_profile_type(values, enterprise)
profile_type = "app-store"
profile_type = "ad-hoc" if values[:adhoc]
profile_type = "development" if values[:development]
profile_type = "developer-id" if values[:developer_id]
profile_type = "enterprise" if enterprise
UI.message("Setting Provisioning Profile type to '#{profile_type}'")
Actions.lane_context[SharedValues::SIGH_PROFILE_TYPE] = profile_type
end
|