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
|
# File 'fastlane/lib/fastlane/actions/cocoapods.rb', line 53
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :repo_update,
env_name: "FL_COCOAPODS_REPO_UPDATE",
description: "Add `--repo-update` flag to `pod install` command",
is_string: false,
default_value: false),
FastlaneCore::ConfigItem.new(key: :silent,
env_name: "FL_COCOAPODS_SILENT",
description: "Execute command without logging output",
is_string: false,
default_value: false),
FastlaneCore::ConfigItem.new(key: :verbose,
env_name: "FL_COCOAPODS_VERBOSE",
description: "Show more debugging information",
is_string: false,
default_value: false),
FastlaneCore::ConfigItem.new(key: :ansi,
env_name: "FL_COCOAPODS_ANSI",
description: "Show output with ANSI codes",
is_string: false,
default_value: true),
FastlaneCore::ConfigItem.new(key: :use_bundle_exec,
env_name: "FL_COCOAPODS_USE_BUNDLE_EXEC",
description: "Use bundle exec when there is a Gemfile presented",
is_string: false,
default_value: true),
FastlaneCore::ConfigItem.new(key: :podfile,
env_name: "FL_COCOAPODS_PODFILE",
description: "Explicitly specify the path to the Cocoapods' Podfile. You can either set it to the Podfile's path or to the folder containing the Podfile file",
optional: true,
is_string: true,
verify_block: proc do |value|
UI.user_error!("Could not find Podfile") unless File.exist?(value) || Helper.test?
end),
FastlaneCore::ConfigItem.new(key: :error_callback,
description: 'A callback invoked with the command output if there is a non-zero exit status',
optional: true,
is_string: false,
type: :string_callback,
default_value: nil),
FastlaneCore::ConfigItem.new(key: :try_repo_update_on_error,
env_name: "FL_COCOAPODS_TRY_REPO_UPDATE_ON_ERROR",
description: 'Retry with --repo-update if action was finished with error',
optional: true,
is_string: false,
default_value: false,
type: Boolean),
FastlaneCore::ConfigItem.new(key: :clean,
env_name: "FL_COCOAPODS_CLEAN",
description: "(Option removed from cocoapods) Remove SCM directories",
deprecated: true,
is_string: false,
default_value: true),
FastlaneCore::ConfigItem.new(key: :integrate,
env_name: "FL_COCOAPODS_INTEGRATE",
description: "(Option removed from cocoapods) Integrate the Pods libraries into the Xcode project(s)",
deprecated: true,
is_string: false,
default_value: true)
]
end
|