Class: Fastlane::Actions::RecreateSchemesAction
Constant Summary
Fastlane::Action::AVAILABLE_CATEGORIES, Fastlane::Action::RETURN_TYPES
Class Method Summary
collapse
action_name, author, deprecated_notes, details, lane_context, method_missing, other_action, output, return_type, return_value, sample_return_value, shell_out_should_use_bundle_exec?, step_text
Class Method Details
.authors ⇒ Object
27
28
29
|
# File 'fastlane/lib/fastlane/actions/recreate_schemes.rb', line 27
def self.authors
"jerolimov"
end
|
.available_options ⇒ Object
17
18
19
20
21
22
23
24
25
|
# File 'fastlane/lib/fastlane/actions/recreate_schemes.rb', line 17
def self.available_options
[
FastlaneCore::ConfigItem.new(
key: :project,
env_name: "XCODE_PROJECT",
description: "The Xcode project"
)
]
end
|
.category ⇒ Object
41
42
43
|
# File 'fastlane/lib/fastlane/actions/recreate_schemes.rb', line 41
def self.category
:project
end
|
.description ⇒ Object
13
14
15
|
# File 'fastlane/lib/fastlane/actions/recreate_schemes.rb', line 13
def self.description
"Recreate not shared Xcode project schemes"
end
|
.example_code ⇒ Object
35
36
37
38
39
|
# File 'fastlane/lib/fastlane/actions/recreate_schemes.rb', line 35
def self.example_code
[
'recreate_schemes(project: "./path/to/MyApp.xcodeproj")'
]
end
|
.is_supported?(platform) ⇒ Boolean
31
32
33
|
# File 'fastlane/lib/fastlane/actions/recreate_schemes.rb', line 31
def self.is_supported?(platform)
[:ios, :mac].include?(platform)
end
|
.run(params) ⇒ Object
4
5
6
7
8
9
10
11
|
# File 'fastlane/lib/fastlane/actions/recreate_schemes.rb', line 4
def self.run(params)
require 'xcodeproj'
UI.message("Recreate schemes for project: #{params[:project]}")
project = Xcodeproj::Project.open(params[:project])
project.recreate_user_schemes
end
|