Class: Fastlane::Actions::DefaultPlatformAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, authors, available_options, deprecated_notes, details, lane_context, method_missing, other_action, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.author ⇒ Object
38
39
40
|
# File 'fastlane/lib/fastlane/actions/default_platform.rb', line 38
def self.author
"KrauseFx"
end
|
.category ⇒ Object
34
35
36
|
# File 'fastlane/lib/fastlane/actions/default_platform.rb', line 34
def self.category
:misc
end
|
.description ⇒ Object
18
19
20
|
# File 'fastlane/lib/fastlane/actions/default_platform.rb', line 18
def self.description
"Defines a default platform to not have to specify the platform"
end
|
.example_code ⇒ Object
28
29
30
31
32
|
# File 'fastlane/lib/fastlane/actions/default_platform.rb', line 28
def self.example_code
[
'default_platform(:android)'
]
end
|
.is_supported?(platform) ⇒ Boolean
42
43
44
|
# File 'fastlane/lib/fastlane/actions/default_platform.rb', line 42
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
22
23
24
25
26
|
# File 'fastlane/lib/fastlane/actions/default_platform.rb', line 22
def self.output
[
['DEFAULT_PLATFORM', 'The default platform']
]
end
|