56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
|
# File 'lib/fastlane/plugin/pod_spec_generator/actions/pod_spec_generator_action.rb', line 56
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :version,
env_name: "POD_SPEC_GENERATOR_VERSION",
description: "Version String",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :summary,
env_name: "POD_SPEC_GENERATOR_SUMMARY",
description: "Summary String",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :description,
env_name: "POD_SPEC_GENERATOR_DESCRIPTION",
description: "Description String",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :name,
env_name: "POD_SPEC_GENERATOR_NAME",
description: "Pod Name String",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :homepage,
env_name: "POD_SPEC_GENERATOR_HOMEPAGE",
description: "Homepage",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :license,
description: "License Object",
default_value: { type: "MIT", file: "LICENSE" },
optional: false,
type: Hash),
FastlaneCore::ConfigItem.new(key: :dependencies,
description: "Dependencies array",
default_value: [],
optional: true,
type: Array),
FastlaneCore::ConfigItem.new(key: :source,
description: "Source",
optional: true,
type: Hash),
FastlaneCore::ConfigItem.new(key: :author,
description: "Author",
optional: true),
FastlaneCore::ConfigItem.new(key: :source_files,
description: "Source Files",
default_value: [],
optional: true,
type: Array),
FastlaneCore::ConfigItem.new(key: :resources,
description: "Resource Files",
default_value: [],
optional: true,
type: Array),
FastlaneCore::ConfigItem.new(key: :swift_version,
env_name: "POD_SPEC_GENERATOR_SWIFT_VERSION",
description: "Source Files",
default_value: "5.9",
optional: true,
type: String),
FastlaneCore::ConfigItem.new(key: :folder,
env_name: "POD_SPEC_GENERATOR_FOLDER",
description: "Folder for the file String",
optional: false,
type: String),
FastlaneCore::ConfigItem.new(key: :platform,
env_name: "POD_SPEC_GENERATOR_PLATFORM",
description: "Platform",
default_value: {ios: "14.0"},
optional: true,
type: Hash),
FastlaneCore::ConfigItem.new(key: :spm_local_dependencies,
description: "Local spm dependencies",
default_value: [],
optional: true,
type: Array),
FastlaneCore::ConfigItem.new(key: :subspecs,
description: "Additional subspecs",
default_value: [],
optional: true,
type: Array),
FastlaneCore::ConfigItem.new(key: :static_framework,
description: "Static Framework",
default_value: false,
optional: true,
is_string: false),
FastlaneCore::ConfigItem.new(key: :vendored_frameworks,
description: "Vendored Framework",
default_value: nil,
optional: true,
type: String)
]
end
|