Class: Fastlane::Actions::DeliverAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES
Class Method Summary
collapse
action_name, authors, lane_context, method_missing, other_action, output, return_value, sample_return_value, sh, step_text
Class Method Details
.author ⇒ Object
46
47
48
|
# File 'lib/fastlane/actions/deliver.rb', line 46
def self.author
"KrauseFx"
end
|
.available_options ⇒ Object
40
41
42
43
44
|
# File 'lib/fastlane/actions/deliver.rb', line 40
def self.available_options
require "deliver"
require "deliver/options"
FastlaneCore::CommanderGenerator.new.generate(Deliver::Options.available_options)
end
|
.category ⇒ Object
64
65
66
|
# File 'lib/fastlane/actions/deliver.rb', line 64
def self.category
:production
end
|
.description ⇒ Object
24
25
26
|
# File 'lib/fastlane/actions/deliver.rb', line 24
def self.description
"Uses deliver to upload new app metadata and builds to iTunes Connect"
end
|
.details ⇒ Object
28
29
30
31
32
33
34
35
36
37
38
|
# File 'lib/fastlane/actions/deliver.rb', line 28
def self.details
[
"Using _deliver_ after _gym_ and _snapshot_ will automatically upload the",
"latest ipa and screenshots with no other configuration",
"",
"If you don't want a PDF report for App Store builds, use the `:force` option.",
"This is useful when running _fastlane_ on your Continuous Integration server: `deliver(force: true)`",
"If your account is on multiple teams and you need to tell the `iTMSTransporter`",
"which 'provider' to use, you can set the `itc_provider` option to pass this info."
].join("\n")
end
|
.example_code ⇒ Object
54
55
56
57
58
59
60
61
62
|
# File 'lib/fastlane/actions/deliver.rb', line 54
def self.example_code
[
'deliver(
force: true, # Set to true to skip PDF verification
itc_provider: "abcde12345" # pass a specific value to the iTMSTransporter -itc_provider option
)'
]
end
|
.is_supported?(platform) ⇒ Boolean
50
51
52
|
# File 'lib/fastlane/actions/deliver.rb', line 50
def self.is_supported?(platform)
[:ios, :mac].include?(platform)
end
|