44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/fastlane/plugin/docc/actions/docc_action.rb', line 44
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :scheme,
env_name: "DOCC_SCHEME",
description: "The scheme to use when calling docc",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :derived_data_path,
env_name: "DOCC_DERIVED_DATA_PATH",
description: "The path where the documentation will be created",
optional: true,
type: String),
FastlaneCore::ConfigItem.new(key: :destination,
env_name: "DESTINATION",
description: "The destination of the project (required for swift packages)",
optional: true,
type: String),
FastlaneCore::ConfigItem.new(key: :configuration,
env_name: "CONFIGURATION",
description: "The configuration for building the project (e.g. 'Debug')",
optional: true,
type: String)
]
end
|