Class: Gym::Options

Inherits:
Object
  • Object
show all
Defined in:
lib/gym/options.rb

Class Method Summary collapse

Class Method Details

.available_optionsObject



6
7
8
9
10
# File 'lib/gym/options.rb', line 6

def self.available_options
  return @options if @options

  @options = plain_options
end

.plain_optionsObject



12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
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
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
151
152
153
154
155
156
157
# File 'lib/gym/options.rb', line 12

def self.plain_options
  [
    FastlaneCore::ConfigItem.new(key: :workspace,
                                 short_option: "-w",
                                 env_name: "GYM_WORKSPACE",
                                 optional: true,
                                 description: "Path the workspace file",
                                 verify_block: proc do |value|
                                   v = File.expand_path(value.to_s)
                                   raise "Workspace file not found at path '#{v}'".red unless File.exist?(v)
                                   raise "Workspace file invalid".red unless File.directory?(v)
                                   raise "Workspace file is not a workspace, must end with .xcworkspace".red unless v.include?(".xcworkspace")
                                 end),
    FastlaneCore::ConfigItem.new(key: :project,
                                 short_option: "-p",
                                 optional: true,
                                 env_name: "GYM_PROJECT",
                                 description: "Path the project file",
                                 verify_block: proc do |value|
                                   v = File.expand_path(value.to_s)
                                   raise "Project file not found at path '#{v}'".red unless File.exist?(v)
                                   raise "Project file invalid".red unless File.directory?(v)
                                   raise "Project file is not a project file, must end with .xcodeproj".red unless v.include?(".xcodeproj")
                                 end),
    FastlaneCore::ConfigItem.new(key: :scheme,
                                 short_option: "-s",
                                 optional: true,
                                 env_name: "GYM_SCHEME",
                                 description: "The project's scheme. Make sure it's marked as `Shared`"),
    FastlaneCore::ConfigItem.new(key: :clean,
                                 short_option: "-c",
                                 env_name: "GYM_CLEAN",
                                 description: "Should the project be cleaned before building it?",
                                 is_string: false,
                                 default_value: false),
    FastlaneCore::ConfigItem.new(key: :output_directory,
                                 short_option: "-o",
                                 env_name: "GYM_OUTPUT_DIRECTORY",
                                 description: "The directory in which the ipa file should be stored in",
                                 default_value: "."),
    FastlaneCore::ConfigItem.new(key: :output_name,
                                 short_option: "-n",
                                 env_name: "GYM_OUTPUT_NAME",
                                 description: "The name of the resulting ipa file",
                                 optional: true,
                                 verify_block: proc do |value|
                                   value.gsub!(".ipa", "")
                                 end),
    FastlaneCore::ConfigItem.new(key: :configuration,
                                 short_option: "-q",
                                 env_name: "GYM_CONFIGURATION",
                                 description: "The configuration to use when building the app. Defaults to 'Release'",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :silent,
                                 short_option: "-a",
                                 env_name: "GYM_SILENT",
                                 description: "Hide all information that's not necessary while building",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :codesigning_identity,
                                 short_option: "-i",
                                 env_name: "GYM_CODE_SIGNING_IDENTITY",
                                 description: "The name of the code signing identity to use. It has to match the name exactly. e.g. 'iPhone Distribution: SunApps GmbH'",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :include_symbols,
                                 short_option: "-m",
                                 env_name: "GYM_INCLUDE_SYMBOLS",
                                 description: "Should the ipa file include symbols?",
                                 default_value: true,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :include_bitcode,
                                 short_option: "-z",
                                 env_name: "GYM_INCLUDE_BITCODE",
                                 description: "Should the ipa include bitcode?",
                                 default_value: false,
                                 is_string: false),
    FastlaneCore::ConfigItem.new(key: :use_legacy_build_api,
                                 env_name: "GYM_USE_LEGACY_BUILD_API",
                                 description: "Don't use the new API because of https://openradar.appspot.com/radar?id=4952000420642816",
                                 default_value: false,
                                 is_string: false,
                                 verify_block: proc do |value|
                                   if value
                                     Helper.log.info "Using legacy build system - waiting for radar to be fixed: https://openradar.appspot.com/radar?id=4952000420642816".red
                                   end
                                 end),
    FastlaneCore::ConfigItem.new(key: :export_method,
                                 short_option: "-j",
                                 env_name: "GYM_EXPORT_METHOD",
                                 description: "How should gym export the archive?",
                                 is_string: true,
                                 optional: true,
                                 verify_block: proc do |value|
                                   av = %w(app-store ad-hoc package enterprise development developer-id)
                                   raise "Unsupported export_method, must be: #{av}" unless av.include?(value)
                                 end),

    # Very optional
    FastlaneCore::ConfigItem.new(key: :archive_path,
                                 short_option: "-b",
                                 env_name: "GYM_ARCHIVE_PATH",
                                 description: "The directory in which the archive file should be stored in",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :buildlog_path,
                                 short_option: "-l",
                                 env_name: "GYM_BUILDLOG_PATH",
                                 description: "The directory where to store the build log",
                                 default_value: "~/Library/Logs/gym"),
    FastlaneCore::ConfigItem.new(key: :sdk,
                                 short_option: "-k",
                                 env_name: "GYM_SDK",
                                 description: "The SDK that should be used for building the application",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :provisioning_profile_path,
                                 short_option: "-e",
                                 env_name: "GYM_PROVISIONING_PROFILE_PATH",
                                 description: "The path to the provisioning profile (optional)",
                                 optional: true,
                                 verify_block: proc do |value|
                                   raise "Provisioning profile not found at path '#{File.expand_path(value)}'".red unless File.exist?(value)
                                 end),
    FastlaneCore::ConfigItem.new(key: :destination,
                                 short_option: "-d",
                                 env_name: "GYM_DESTINATION",
                                 description: "Use a custom destination for building the app",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :export_team_id,
                                 short_option: "-g",
                                 env_name: "GYM_EXPORT_TEAM_ID",
                                 description: "Optional: Sometimes you need to specify a team id when exporting the ipa file",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :xcargs,
                                 short_option: "-x",
                                 env_name: "GYM_XCARGS",
                                 description: "Pass additional arguments to xcodebuild. Be sure to quote the setting names and values e.g. OTHER_LDFLAGS=\"-ObjC -lstdc++\"",
                                 optional: true),
    FastlaneCore::ConfigItem.new(key: :xcconfig,
                                 short_option: "-y",
                                 env_name: "GYM_XCCONFIG",
                                 description: "Use an extra XCCONFIG file to build your app",
                                 optional: true,
                                 verify_block: proc do |value|
                                   raise "File not found at path '#{File.expand_path(value)}'".red unless File.exist?(value)
                                 end)
  ]
end