Class: Fastlane::Actions::GitAddAction
Class Method Summary
collapse
action_name, author, sh, step_text
Class Method Details
.authors ⇒ Object
52
53
54
|
# File 'lib/fastlane/actions/git_add.rb', line 52
def self.authors
["4brunu"]
end
|
.available_options ⇒ Object
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# File 'lib/fastlane/actions/git_add.rb', line 28
def self.available_options
[
FastlaneCore::ConfigItem.new(key: :path,
description: "The file you want to add",
is_string: false,
verify_block: proc do |value|
if value.kind_of?(String)
raise "Couldn't find file at path '#{value}'".red unless File.exist?(value)
else
value.each do |x|
raise "Couldn't find file at path '#{x}'".red unless File.exist?(x)
end
end
end)
]
end
|
.description ⇒ Object
20
21
22
|
# File 'lib/fastlane/actions/git_add.rb', line 20
def self.description
"Directly add the given file"
end
|
.details ⇒ Object
24
25
26
|
# File 'lib/fastlane/actions/git_add.rb', line 24
def self.details
""
end
|
.is_supported?(platform) ⇒ Boolean
56
57
58
|
# File 'lib/fastlane/actions/git_add.rb', line 56
def self.is_supported?(platform)
true
end
|
.output ⇒ Object
45
46
|
# File 'lib/fastlane/actions/git_add.rb', line 45
def self.output
end
|
.return_value ⇒ Object
48
49
50
|
# File 'lib/fastlane/actions/git_add.rb', line 48
def self.return_value
nil
end
|
.run(params) ⇒ Object
4
5
6
7
8
9
10
11
12
13
14
|
# File 'lib/fastlane/actions/git_add.rb', line 4
def self.run(params)
if params[:path].kind_of?(String)
paths = params[:path].shellescape
else
paths = params[:path].map(&:shellescape).join(' ')
end
result = Actions.sh("git add #{paths}")
Helper.log.info "Successfully added \"#{params[:path]}\" 💾.".green
return result
end
|